:root {
  --ocean-depth: #1a1a2e;
  --midnight-canvas: #16213e;
  --coral-accent: #ff006e;
  --coral-whisper: #ffe6f2;
  --deep-coral: #b8004f;
  --silver-mist: #e0e6ed;
  --ghost-white: #f8f9fa;
  --charcoal-text: #2c3e50;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(135deg, var(--ocean-depth) 0%, var(--midnight-canvas) 100%);
    color: var(--silver-mist);
    line-height: 1.6;
    min-height: 100vh;
}

.primary-navigation {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 0, 110, 0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 76px;
}

.brand-identity {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.company-logo {
    font-family: 'Raleway', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--coral-accent);
    letter-spacing: -0.5px;
}

.brand-tagline {
    font-size: 14px;
    color: var(--silver-mist);
    font-weight: 300;
}

.menu-wrapper {
  display: flex;
  align-items: center;
  gap: 34px;
}

.navigation-links {
    display: flex;
    list-style: none;
    gap: 38px;
    transition: all 0.3s ease;
}

.nav-item {
    text-decoration: none;
    color: var(--silver-mist);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.nav-item:hover,
.nav-item.active {
    color: var(--coral-accent);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral-accent);
    transition: width 0.3s ease;
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
}

.burger-line {
    width: 26px;
    height: 3px;
    background: var(--silver-mist);
    transition: all 0.3s ease;
}

.menu-toggle.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active .burger-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.welcome-banner {
    padding: 120px 28px 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.content-workspace {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 68px;
    align-items: center;
}

.intro-content {
    display: flex;
    flex-direction: column;
    gap: 42px;
}

.headline-area {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.primary-headline {
    font-family: 'Raleway', sans-serif;
    font-size: 54px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--ghost-white);
}

.highlight-text {
    color: var(--coral-accent);
    position: relative;
}

.intro-description {
    font-size: 18px;
    color: var(--silver-mist);
    opacity: 0.9;
    max-width: 480px;
}

.action-panel {
    display: flex;
    gap: 21px;
    align-items: center;
}

.primary-cta {
    background: var(--coral-accent);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 0;
}

.primary-cta:hover {
    background: var(--deep-coral);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 110, 0.3);
}

.secondary-cta {
    background: transparent;
    color: var(--silver-mist);
    border: 2px solid var(--silver-mist);
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
}

.secondary-cta:hover {
    background: var(--silver-mist);
    color: var(--ocean-depth);
    transform: translateY(-1px);
}

.visual-showcase {
    position: relative;
}

.design-preview {
    position: relative;
    background: rgba(255, 0, 110, 0.1);
    padding: 34px;
    border: 1px solid rgba(255, 0, 110, 0.3);
}

.showcase-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: brightness(1.1);
}

@media (max-width: 890px) {
    .navigation-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 20px 28px;
        gap: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .navigation-links.mobile-active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .content-workspace {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .primary-headline {
        font-size: 42px;
    }
    
    .nav-container {
        padding: 0 21px;
    }
}

@media (max-width: 640px) {
    .welcome-banner {
        padding: 100px 21px 40px;
    }
    
    .primary-headline {
        font-size: 36px;
    }
    
    .action-panel {
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }
    
    .primary-cta,
    .secondary-cta {
        width: 100%;
        padding: 18px;
    }
}
















.advantage-showcase {
    padding: 89px 28px;
    background: linear-gradient(45deg, var(--midnight-canvas) 0%, var(--ocean-depth) 100%);
    position: relative;
}

.advantage-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--coral-accent), transparent);
}

.showcase-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 67px;
}

.section-title {
    font-family: 'Raleway', sans-serif;
    font-size: 47px;
    font-weight: 700;
    color: var(--ghost-white);
    margin-bottom: 18px;
    letter-spacing: -0.8px;
}

.section-subtitle {
    font-size: 19px;
    color: var(--silver-mist);
    opacity: 0.85;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}

.benefits-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 76px;
    align-items: start;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 38px 29px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 110, 0.05), transparent);
    transition: left 0.6s ease;
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 0, 110, 0.3);
    transform: translateY(-4px);
}

.featured-card {
    background: rgba(255, 0, 110, 0.08);
    border-color: rgba(255, 0, 110, 0.2);
}

.benefit-icon {
    margin-bottom: 23px;
}

.icon-shape {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: relative;
}

.experience-icon {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.methodology-icon {
    background: linear-gradient(135deg, var(--coral-accent), var(--deep-coral));
}

.feedback-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.support-icon {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.tools-icon {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.certificate-icon {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.benefit-title {
    font-family: 'Raleway', sans-serif;
    font-size: 21px;
    font-weight: 600;
    color: var(--ghost-white);
    margin-bottom: 14px;
    line-height: 1.3;
}

.benefit-text {
    font-size: 15px;
    color: var(--silver-mist);
    opacity: 0.9;
    line-height: 1.6;
}

.visual-proof {
    position: sticky;
    top: 120px;
}

.proof-image-wrapper {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 0, 110, 0.2);
}

.proof-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.1);
    transition: transform 0.6s ease;
}

.proof-image-wrapper:hover .proof-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 24px;
    right: 24px;
}

.stats-badge {
    background: rgba(255, 0, 110, 0.9);
    backdrop-filter: blur(8px);
    padding: 16px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-number {
    font-family: 'Raleway', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: white;
    opacity: 0.9;
    text-align: center;
}

@media (max-width: 1280px) {
    .benefits-layout {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    
    .visual-proof {
        position: relative;
        top: auto;
    }
}

@media (max-width: 890px) {
    .advantage-showcase {
        padding: 67px 21px;
    }
    
    .section-title {
        font-size: 38px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .benefit-card {
        padding: 32px 24px;
    }
}

@media (max-width: 640px) {
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 17px;
    }
    
    .benefit-card {
        padding: 28px 20px;
    }
    
    .stats-badge {
        padding: 12px 18px;
    }
    
    .stat-number {
        font-size: 24px;
    }
}















.course-structure {
    padding: 94px 28px;
    background: var(--ocean-depth);
    position: relative;
}

.structure-container {
    max-width: 1400px;
    margin: 0 auto;
}

.program-header {
    text-align: center;
    margin-bottom: 73px;
}

.program-title {
    font-family: 'Raleway', sans-serif;
    font-size: 52px;
    font-weight: 700;
    color: var(--ghost-white);
    margin-bottom: 21px;
    letter-spacing: -0.9px;
}

.program-description {
    font-size: 18px;
    color: var(--silver-mist);
    opacity: 0.87;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

.course-modules {
    max-width: 920px;
    margin: 0 auto;
}

.module-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.accordion-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 0, 110, 0.3);
}

.accordion-item.active {
    background: rgba(255, 0, 110, 0.08);
    border-color: rgba(255, 0, 110, 0.4);
}

.accordion-header {
    padding: 32px 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.02);
}

.module-info {
    display: flex;
    align-items: center;
    gap: 28px;
}

.module-number {
    font-family: 'Raleway', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--coral-accent);
    line-height: 1;
    min-width: 65px;
}

.module-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.module-title {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--ghost-white);
    margin: 0;
}

.module-duration {
    font-size: 14px;
    color: var(--silver-mist);
    opacity: 0.8;
}

.accordion-toggle {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 0, 110, 0.1);
    border: 1px solid rgba(255, 0, 110, 0.3);
    transition: all 0.3s ease;
}

.toggle-icon {
    width: 16px;
    height: 2px;
    background: var(--coral-accent);
    position: relative;
    transition: all 0.3s ease;
}

.toggle-icon::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 7px;
    width: 2px;
    height: 16px;
    background: var(--coral-accent);
    transition: all 0.3s ease;
}

.accordion-item.active .toggle-icon::before {
    transform: rotate(90deg);
    opacity: 0;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.accordion-item.active .accordion-content {
    max-height: 400px;
}

.topics-grid {
    padding: 0 36px 38px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.topic-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 22px 24px;
    border-left: 3px solid var(--coral-accent);
    transition: all 0.3s ease;
}

.topic-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(4px);
}

.topic-title {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--ghost-white);
    margin-bottom: 8px;
}

.topic-desc {
    font-size: 14px;
    color: var(--silver-mist);
    opacity: 0.85;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 890px) {
    .course-structure {
        padding: 72px 21px;
    }
    
    .program-title {
        font-size: 42px;
    }
    
    .accordion-header {
        padding: 24px 22px;
    }
    
    .module-info {
        gap: 18px;
    }
    
    .module-number {
        font-size: 36px;
        min-width: 50px;
    }
    
    .module-title {
        font-size: 20px;
    }
    
    .topics-grid {
        padding: 0 22px 28px;
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

@media (max-width: 640px) {
    .program-title {
        font-size: 34px;
    }
    
    .program-description {
        font-size: 16px;
    }
    
    .accordion-header {
        padding: 20px 18px;
    }
    
    .module-info {
        gap: 14px;
    }
    
    .module-number {
        font-size: 28px;
        min-width: 40px;
    }
    
    .module-title {
        font-size: 18px;
    }
    
    .accordion-toggle {
        width: 36px;
        height: 36px;
    }
    
    .topics-grid {
        padding: 0 18px 24px;
    }
    
    .topic-item {
        padding: 18px 20px;
    }
}















.training-formats {
    padding: 87px 28px;
    background: linear-gradient(165deg, var(--midnight-canvas) 0%, var(--ocean-depth) 100%);
}

.formats-container {
    max-width: 1400px;
    margin: 0 auto;
}

.formats-header {
    text-align: center;
    margin-bottom: 64px;
}

.formats-title {
    font-family: 'Raleway', sans-serif;
    font-size: 49px;
    font-weight: 700;
    color: var(--ghost-white);
    margin-bottom: 19px;
    letter-spacing: -0.7px;
}

.formats-subtitle {
    font-size: 17px;
    color: var(--silver-mist);
    opacity: 0.88;
    max-width: 590px;
    margin: 0 auto;
    line-height: 1.7;
}

.format-selector {
    max-width: 1200px;
    margin: 0 auto;
}

.selector-tabs {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 53px;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-button {
    background: transparent;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 500;
    color: var(--silver-mist);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex: 1;
    max-width: 200px;
}

.tab-button:hover {
    background: rgba(255, 255, 255, 0.08);
}

.tab-button.active {
    background: var(--coral-accent);
    color: white;
}

.format-content {
    position: relative;
}

.format-panel {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.format-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.format-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 34px;
}

.format-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 36px 32px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.format-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 110, 0.03), transparent);
    transition: left 0.8s ease;
}

.format-card:hover::before {
    left: 100%;
}

.format-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 0, 110, 0.3);
    transform: translateY(-6px);
}

.premium-card {
    background: rgba(255, 0, 110, 0.06);
    border-color: rgba(255, 0, 110, 0.2);
}

.featured-card {
    background: rgba(67, 233, 123, 0.06);
    border-color: rgba(67, 233, 123, 0.2);
}

.card-badge {
    position: absolute;
    top: -1px;
    right: -1px;
    background: var(--coral-accent);
    color: white;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-card .card-badge {
    background: #43e97b;
}

.format-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    border-radius: 50%;
}

.online-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.group-online-icon {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.classroom-icon {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.workshop-icon {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.hybrid-icon {
    background: linear-gradient(135deg, #fa709a, #fee140);
}

.mentorship-icon {
    background: linear-gradient(135deg, #a8edea, #fed6e3);
}

.format-name {
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--ghost-white);
    margin-bottom: 12px;
}

.format-description {
    font-size: 15px;
    color: var(--silver-mist);
    opacity: 0.9;
    margin-bottom: 28px;
    line-height: 1.6;
}

.format-details {
    margin-bottom: 26px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 14px;
    color: var(--silver-mist);
    opacity: 0.8;
}

.detail-value {
    font-size: 14px;
    font-weight: 500;
    color: var(--ghost-white);
}

.schedule-info {
    margin-bottom: 28px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--coral-accent);
}

.schedule-title {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--ghost-white);
    margin-bottom: 14px;
}

.schedule-list {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
}

.schedule-list li {
    font-size: 14px;
    color: var(--silver-mist);
    opacity: 0.9;
    padding: 4px 0;
    position: relative;
    padding-left: 16px;
}

.schedule-list li::before {
    content: '•';
    color: var(--coral-accent);
    position: absolute;
    left: 0;
}

.location-note {
    font-size: 13px;
    color: var(--coral-accent);
    margin: 12px 0 0 0;
    font-weight: 500;
}

.pricing-section {
    display: flex;
    align-items: baseline;
    gap: 6px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.price-amount {
    font-family: 'Raleway', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--coral-accent);
}

.price-period {
    font-size: 16px;
    color: var(--silver-mist);
    opacity: 0.8;
}

@media (max-width: 890px) {
    .training-formats {
        padding: 68px 21px;
    }
    
    .formats-title {
        font-size: 38px;
    }
    
    .format-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .selector-tabs {
        flex-direction: column;
        gap: 8px;
    }
    
    .tab-button {
        max-width: none;
    }
}

@media (max-width: 640px) {
    .formats-title {
        font-size: 32px;
    }
    
    .formats-subtitle {
        font-size: 16px;
    }
    
    .format-card {
        padding: 28px 24px;
    }
    
    .format-name {
        font-size: 20px;
    }
    
    .schedule-info {
        padding: 18px;
    }
    
    .price-amount {
        font-size: 28px;
    }
}

















.contact-section {
    padding: 91px 28px;
    background: linear-gradient(180deg, var(--ocean-depth) 0%, var(--midnight-canvas) 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--coral-accent), transparent);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 71px;
}

.contact-title {
    font-family: 'Raleway', sans-serif;
    font-size: 51px;
    font-weight: 700;
    color: var(--ghost-white);
    margin-bottom: 18px;
    letter-spacing: -0.8px;
}

.contact-subtitle {
    font-size: 18px;
    color: var(--silver-mist);
    opacity: 0.87;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 67px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 29px 26px;
    display: flex;
    align-items: flex-start;
    gap: 21px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 110, 0.04), transparent);
    transition: left 0.7s ease;
}

.info-card:hover::before {
    left: 100%;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 0, 110, 0.2);
    transform: translateX(8px);
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 4px;
}

.phone-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.email-icon {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.location-icon {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.time-icon {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.info-content {
    flex: 1;
}

.info-title {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--ghost-white);
    margin-bottom: 8px;
}

.info-detail {
    font-size: 16px;
    color: var(--coral-accent);
    font-weight: 500;
    margin-bottom: 6px;
}

.info-note {
    font-size: 14px;
    color: var(--silver-mist);
    opacity: 0.8;
    margin: 0;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 42px 38px;
}

.form-header {
    margin-bottom: 34px;
}

.form-title {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--ghost-white);
    margin-bottom: 12px;
}

.form-description {
    font-size: 15px;
    color: var(--silver-mist);
    opacity: 0.85;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--ghost-white);
    margin-bottom: 4px;
}

.form-input,
.form-textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 16px 18px;
    font-size: 15px;
    color: var(--ghost-white);
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--silver-mist);
    opacity: 0.6;
}

.form-input:focus,
.form-textarea:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--coral-accent);
    box-shadow: 0 0 0 2px rgba(255, 0, 110, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
    font-family: 'Open Sans', sans-serif;
}

.form-submit-btn {
    background: var(--coral-accent);
    border: none;
    padding: 18px 32px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
    position: relative;
    overflow: hidden;
}

.form-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.form-submit-btn:hover::before {
    left: 100%;
}

.form-submit-btn:hover {
    background: var(--deep-coral);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 110, 0.3);
}

.btn-text {
    transition: transform 0.3s ease;
}

.btn-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.form-submit-btn:hover .btn-icon {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 890px) {
    .contact-section {
        padding: 72px 21px;
    }
    
    .contact-title {
        font-size: 42px;
    }
    
    .contact-form-wrapper {
        padding: 32px 28px;
    }
    
    .info-card {
        padding: 24px 20px;
    }
}

@media (max-width: 640px) {
    .contact-title {
        font-size: 36px;
    }
    
    .contact-subtitle {
        font-size: 16px;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .info-icon {
        margin: 0 auto;
    }
    
    .contact-form-wrapper {
        padding: 24px 20px;
    }
    
    .form-submit-btn {
        padding: 16px 28px;
    }
}













.main-footer {
    background: linear-gradient(180deg, var(--midnight-canvas) 0%, #0f1419 100%);
    padding: 73px 28px 34px;
    border-top: 1px solid rgba(255, 0, 110, 0.15);
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--coral-accent), transparent);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 67px;
    margin-bottom: 52px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 6px;
}

.brand-name {
    font-family: 'Raleway', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--coral-accent);
    margin: 0;
    letter-spacing: -0.4px;
}

.brand-subtitle {
    font-size: 14px;
    color: var(--silver-mist);
    font-weight: 300;
    opacity: 0.8;
}

.footer-description {
    font-size: 15px;
    color: var(--silver-mist);
    opacity: 0.85;
    line-height: 1.7;
    max-width: 380px;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 42px;
}

.link-column {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.column-title {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--ghost-white);
    margin: 0;
    margin-bottom: 4px;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: var(--silver-mist);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    padding-left: 12px;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: var(--coral-accent);
    transition: height 0.3s ease;
}

.footer-link:hover {
    color: var(--coral-accent);
    opacity: 1;
    transform: translateX(4px);
}

.footer-link:hover::before {
    height: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.contact-icon {
    font-size: 14px;
    opacity: 0.7;
    min-width: 20px;
}

.contact-text {
    font-size: 14px;
    color: var(--silver-mist);
    opacity: 0.8;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 0 auto 32px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.copyright-section {
    flex: 1;
}

.copyright-text {
    font-size: 14px;
    color: var(--silver-mist);
    opacity: 0.7;
    margin: 0;
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.legal-link {
    color: var(--silver-mist);
    text-decoration: none;
    font-size: 13px;
    opacity: 0.8;
    transition: all 0.3s ease;
    position: relative;
}

.legal-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--coral-accent);
    transition: width 0.3s ease;
}

.legal-link:hover {
    color: var(--coral-accent);
    opacity: 1;
}

.legal-link:hover::after {
    width: 100%;
}

.link-separator {
    color: var(--silver-mist);
    opacity: 0.5;
    font-size: 12px;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 34px;
    }
}

@media (max-width: 890px) {
    .main-footer {
        padding: 56px 21px 28px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .legal-links {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .brand-name {
        font-size: 24px;
    }
    
    .footer-description {
        font-size: 14px;
    }
    
    .column-title {
        font-size: 15px;
    }
    
    .footer-link,
    .contact-text {
        font-size: 13px;
    }
    
    .copyright-text {
        font-size: 13px;
    }
    
    .legal-link {
        font-size: 12px;
    }
}

/* Smooth scroll behavior for anchor links */
html {
    scroll-behavior: smooth;
}

/* Footer hover animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-brand,
.link-column {
    animation: fadeInUp 0.6s ease-out;
}

.link-column:nth-child(2) {
    animation-delay: 0.1s;
}

.link-column:nth-child(3) {
    animation-delay: 0.2s;
}














.about-hero {
    padding: 120px 28px 80px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--ocean-depth) 0%, var(--midnight-canvas) 100%);
}

.hero-content {
    max-width: 600px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    background: rgba(255, 0, 110, 0.1);
    padding: 24px;
    border: 1px solid rgba(255, 0, 110, 0.3);
    max-width: 500px;
}

.about-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: brightness(1.1);
}

.our-story {
    padding: 89px 28px;
    background: var(--midnight-canvas);
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-title {
    font-family: 'Raleway', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--ghost-white);
    margin-bottom: 32px;
    letter-spacing: -0.6px;
}

.story-paragraph {
    font-size: 17px;
    color: var(--silver-mist);
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 24px;
    text-align: left;
}

.course-offerings {
    padding: 94px 28px;
    background: linear-gradient(45deg, var(--ocean-depth) 0%, var(--midnight-canvas) 100%);
}

.offerings-container {
    max-width: 1400px;
    margin: 0 auto;
}

.offerings-header {
    text-align: center;
    margin-bottom: 67px;
}

.offerings-title {
    font-family: 'Raleway', sans-serif;
    font-size: 47px;
    font-weight: 700;
    color: var(--ghost-white);
    margin-bottom: 18px;
    letter-spacing: -0.8px;
}

.offerings-subtitle {
    font-size: 18px;
    color: var(--silver-mist);
    opacity: 0.85;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.7;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
}

.offering-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 36px 32px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.offering-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 110, 0.03), transparent);
    transition: left 0.8s ease;
}

.offering-card:hover::before {
    left: 100%;
}

.offering-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 0, 110, 0.3);
    transform: translateY(-6px);
}

.featured-offering {
    background: rgba(255, 0, 110, 0.06);
    border-color: rgba(255, 0, 110, 0.2);
}

.card-badge {
    position: absolute;
    top: -1px;
    right: -1px;
    background: var(--coral-accent);
    color: white;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    border-radius: 50%;
}

.design-basics-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.adobe-tools-icon {
    background: linear-gradient(135deg, var(--coral-accent), var(--deep-coral));
}

.advanced-techniques-icon {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.brand-identity-icon {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.digital-design-icon {
    background: linear-gradient(135deg, #fa709a, #fee140);
}

.portfolio-career-icon {
    background: linear-gradient(135deg, #a8edea, #fed6e3);
}

.card-title {
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--ghost-white);
    margin-bottom: 16px;
}

.card-description {
    font-size: 15px;
    color: var(--silver-mist);
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 24px;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-item {
    background: rgba(255, 0, 110, 0.1);
    color: var(--coral-accent);
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(255, 0, 110, 0.2);
}

.teaching-approach {
    padding: 89px 28px;
    background: var(--ocean-depth);
}

.approach-container {
    max-width: 1200px;
    margin: 0 auto;
}

.approach-content {
    max-width: 900px;
    margin: 0 auto;
}

.approach-title {
    font-family: 'Raleway', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--ghost-white);
    margin-bottom: 24px;
    text-align: center;
    letter-spacing: -0.6px;
}

.approach-description {
    font-size: 18px;
    color: var(--silver-mist);
    opacity: 0.9;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 48px;
}

.approach-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.method-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.method-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 0, 110, 0.2);
    transform: translateY(-4px);
}

.method-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
}

.hands-on-icon {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.personal-guidance-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.industry-connection-icon {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.method-content {
    flex: 1;
}

.method-title {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--ghost-white);
    margin-bottom: 8px;
}

.method-text {
    font-size: 14px;
    color: var(--silver-mist);
    opacity: 0.9;
    line-height: 1.6;
}

.stats-achievements {
    padding: 67px 28px;
    background: linear-gradient(135deg, var(--midnight-canvas) 0%, var(--ocean-depth) 100%);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.stat-card {
    text-align: center;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 0, 110, 0.3);
    transform: translateY(-4px);
}

.stat-number {
    font-family: 'Raleway', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--coral-accent);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--silver-mist);
    opacity: 0.9;
    font-weight: 500;
}

@media (max-width: 890px) {
    .about-hero {
        padding: 100px 21px 60px;
    }
    
    .content-workspace {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .our-story {
        padding: 67px 21px;
    }
    
    .story-title {
        font-size: 36px;
    }
    
    .course-offerings {
        padding: 72px 21px;
    }
    
    .offerings-title {
        font-size: 38px;
    }
    
    .offerings-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .teaching-approach {
        padding: 67px 21px;
    }
    
    .approach-title {
        font-size: 36px;
    }
    
    .approach-methods {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .stats-achievements {
        padding: 56px 21px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .primary-headline {
        font-size: 36px;
    }
    
    .story-title {
        font-size: 32px;
    }
    
    .offerings-title {
        font-size: 32px;
    }
    
    .approach-title {
        font-size: 32px;
    }
    
    .offering-card {
        padding: 28px 24px;
    }
    
    .method-item {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 24px 20px;
    }
    
    .method-icon {
        margin: 0 auto;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 36px;
    }
}

/* Additional hover animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.offering-card {
    animation: slideInUp 0.6s ease-out;
}

.offering-card:nth-child(2) {
    animation-delay: 0.1s;
}

.offering-card:nth-child(3) {
    animation-delay: 0.2s;
}

.offering-card:nth-child(4) {
    animation-delay: 0.3s;
}

.offering-card:nth-child(5) {
    animation-delay: 0.4s;
}

.offering-card:nth-child(6) {
    animation-delay: 0.5s;
}

.method-item {
    animation: slideInUp 0.6s ease-out;
}

.method-item:nth-child(2) {
    animation-delay: 0.2s;
}

.method-item:nth-child(3) {
    animation-delay: 0.4s;
}

.stat-card {
    animation: slideInUp 0.6s ease-out;
}

.stat-card:nth-child(2) {
    animation-delay: 0.1s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.2s;
}

.stat-card:nth-child(4) {
    animation-delay: 0.3s;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Enhanced card interactions */
.offering-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    transition: transform 0.3s ease;
}

.offering-card:hover .feature-item {
    background: rgba(255, 0, 110, 0.15);
    border-color: rgba(255, 0, 110, 0.3);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-number {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Loading animation for images */
.about-image {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        filter: blur(10px);
    }
    to {
        opacity: 1;
        filter: blur(0);
    }
}

/* Enhanced text animations */
.story-paragraph {
    animation: slideInUp 0.8s ease-out;
}

.story-paragraph:nth-child(2) {
    animation-delay: 0.2s;
}

.story-paragraph:nth-child(3) {
    animation-delay: 0.4s;
}

.story-paragraph:nth-child(4) {
    animation-delay: 0.6s;
}

/* Focus states for accessibility */
.offering-card:focus,
.method-item:focus,
.stat-card:focus {
    outline: 2px solid var(--coral-accent);
    outline-offset: 4px;
}

/* Print styles */
@media print {
    .primary-navigation,
    .main-footer {
        display: none;
    }
    
    .about-hero,
    .our-story,
    .course-offerings,
    .teaching-approach,
    .stats-achievements {
        padding: 20px 0;
        background: white !important;
        color: black !important;
    }
    
    .primary-headline,
    .story-title,
    .offerings-title,
    .approach-title {
        color: black !important;
    }
    
    .highlight-text {
        color: #333 !important;
    }
}





















.blog-image-wrapper {
    position: relative;
    background: rgba(255, 0, 110, 0.1);
    padding: 24px;
    border: 1px solid rgba(255, 0, 110, 0.3);
    max-width: 500px;
}

.blog-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: brightness(1.1);
}

.training-journey {
    padding: 94px 28px;
    background: var(--midnight-canvas);
}

.journey-container {
    max-width: 1200px;
    margin: 0 auto;
}

.journey-header {
    text-align: center;
    margin-bottom: 73px;
}

.journey-title {
    font-family: 'Raleway', sans-serif;
    font-size: 47px;
    font-weight: 700;
    color: var(--ghost-white);
    margin-bottom: 18px;
    letter-spacing: -0.8px;
}

.journey-subtitle {
    font-size: 18px;
    color: var(--silver-mist);
    opacity: 0.85;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 42px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 38px;
    padding: 36px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 110, 0.03), transparent);
    transition: left 0.8s ease;
}

.step-item:hover::before {
    left: 100%;
}

.step-item:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 0, 110, 0.3);
    transform: translateX(8px);
}

.featured-step {
    background: rgba(255, 0, 110, 0.06);
    border-color: rgba(255, 0, 110, 0.2);
}

.certificate-step {
    background: rgba(67, 233, 123, 0.06);
    border-color: rgba(67, 233, 123, 0.2);
}

.step-number {
    font-family: 'Raleway', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--coral-accent);
    line-height: 1;
    min-width: 80px;
    flex-shrink: 0;
}

.certificate-step .step-number {
    color: #43e97b;
}

.step-content {
    flex: 1;
}

.step-title {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--ghost-white);
    margin-bottom: 16px;
    line-height: 1.3;
}

.step-description {
    font-size: 16px;
    color: var(--silver-mist);
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 24px;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.feature-tag {
    background: rgba(255, 0, 110, 0.1);
    color: var(--coral-accent);
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(255, 0, 110, 0.2);
}

.certificate-step .feature-tag {
    background: rgba(67, 233, 123, 0.1);
    color: #43e97b;
    border-color: rgba(67, 233, 123, 0.2);
}

.student-experience {
    padding: 89px 28px;
    background: linear-gradient(45deg, var(--ocean-depth) 0%, var(--midnight-canvas) 100%);
}

.experience-container {
    max-width: 1400px;
    margin: 0 auto;
}

.experience-header {
    text-align: center;
    margin-bottom: 67px;
}

.experience-title {
    font-family: 'Raleway', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--ghost-white);
    margin-bottom: 18px;
    letter-spacing: -0.6px;
}

.experience-subtitle {
    font-size: 17px;
    color: var(--silver-mist);
    opacity: 0.87;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}

.experience-stories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
}

.story-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px 28px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 110, 0.04), transparent);
    transition: left 0.7s ease;
}

.story-card:hover::before {
    left: 100%;
}

.story-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 0, 110, 0.3);
    transform: translateY(-6px);
}

.featured-story {
    background: rgba(255, 0, 110, 0.06);
    border-color: rgba(255, 0, 110, 0.2);
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.story-author {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--coral-accent);
    margin: 0;
}

.story-text {
    font-size: 15px;
    color: var(--silver-mist);
    opacity: 0.9;
    line-height: 1.6;
    font-style: italic;
}

.story-highlight {
    background: var(--coral-accent);
    color: white;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
}

.learning-environment {
    padding: 89px 28px;
    background: var(--ocean-depth);
}

.environment-container {
    max-width: 1200px;
    margin: 0 auto;
}

.environment-content {
    text-align: center;
    margin-bottom: 56px;
}

.environment-title {
    font-family: 'Raleway', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--ghost-white);
    margin-bottom: 24px;
    letter-spacing: -0.6px;
}

.environment-description {
    font-size: 17px;
    color: var(--silver-mist);
    opacity: 0.9;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 48px;
}

.environment-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 110, 0.03), transparent);
    transition: left 0.6s ease;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 0, 110, 0.3);
    transform: translateY(-4px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    flex-shrink: 0;
}

.interactive-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.support-icon {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.community-icon {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--ghost-white);
    margin-bottom: 12px;
}

.feature-text {
    font-size: 15px;
    color: var(--silver-mist);
    opacity: 0.9;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 890px) {
    .blog-hero {
        padding: 100px 21px 60px;
    }
    
    .content-workspace {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .training-journey {
        padding: 72px 21px;
    }
    
    .journey-title {
        font-size: 38px;
    }
    
    .step-item {
        flex-direction: column;
        gap: 24px;
        padding: 28px 24px;
        text-align: center;
    }
    
    .step-number {
        font-size: 48px;
        min-width: auto;
        margin: 0 auto;
    }
    
    .student-experience {
        padding: 67px 21px;
    }
    
    .experience-title {
        font-size: 36px;
    }
    
    .experience-stories {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .learning-environment {
        padding: 67px 21px;
    }
    
    .environment-title {
        font-size: 36px;
    }
    
    .environment-features {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 18px;
        padding: 28px 24px;
    }
    
    .feature-icon {
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .primary-headline {
        font-size: 36px;
    }
    
    .journey-title {
        font-size: 32px;
    }
    
    .experience-title {
        font-size: 32px;
    }
    
    .environment-title {
        font-size: 32px;
    }
    
    .step-item {
        padding: 24px 20px;
    }
    
    .step-number {
        font-size: 42px;
    }
    
    .step-title {
        font-size: 20px;
    }
    
    .step-description {
        font-size: 15px;
    }
    
    .story-card {
        padding: 24px 20px;
    }
    
    .feature-item {
        padding: 24px 20px;
    }
    
    .story-author {
        font-size: 16px;
    }
    
    .story-text {
        font-size: 14px;
    }
    
    .feature-title {
        font-size: 18px;
    }
    
    .feature-text {
        font-size: 14px;
    }
}

/* Animation enhancements */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-item:nth-child(odd) {
    animation: slideInFromLeft 0.8s ease-out;
}

.step-item:nth-child(even) {
    animation: slideInFromRight 0.8s ease-out;
}

.step-item:nth-child(1) { animation-delay: 0.1s; }
.step-item:nth-child(2) { animation-delay: 0.2s; }
.step-item:nth-child(3) { animation-delay: 0.3s; }
.step-item:nth-child(4) { animation-delay: 0.4s; }
.step-item:nth-child(5) { animation-delay: 0.5s; }
.step-item:nth-child(6) { animation-delay: 0.6s; }
.step-item:nth-child(7) { animation-delay: 0.7s; }
.step-item:nth-child(8) { animation-delay: 0.8s; }

.story-card {
    animation: slideInUp 0.6s ease-out;
}

.story-card:nth-child(2) {
    animation-delay: 0.2s;
}

.story-card:nth-child(3) {
    animation-delay: 0.4s;
}

.feature-item {
    animation: slideInUp 0.6s ease-out;
}

.feature-item:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced hover effects */
.step-item:hover .step-number {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.step-item:hover .feature-tag {
    background: rgba(255, 0, 110, 0.15);
    border-color: rgba(255, 0, 110, 0.4);
    transition: all 0.3s ease;
}

.certificate-step:hover .feature-tag {
    background: rgba(67, 233, 123, 0.15);
    border-color: rgba(67, 233, 123, 0.4);
}

.story-card:hover .story-highlight {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(255, 0, 110, 0.3);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    transition: transform 0.3s ease;
}

/* Loading animation for images */
.blog-image {
    animation: fadeInImage 1s ease-in-out;
}

@keyframes fadeInImage {
    from {
        opacity: 0;
        filter: blur(10px) brightness(0.8);
    }
    to {
        opacity: 1;
        filter: blur(0) brightness(1.1);
    }
}

/* Focus states for accessibility */
.step-item:focus,
.story-card:focus,
.feature-item:focus {
    outline: 2px solid var(--coral-accent);
    outline-offset: 4px;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Print styles */
@media print {
    .primary-navigation,
    .main-footer {
        display: none;
    }
    
    .blog-hero,
    .training-journey,
    .student-experience,
    .learning-environment {
        padding: 20px 0;
        background: white !important;
        color: black !important;
    }
    
    .primary-headline,
    .journey-title,
    .experience-title,
    .environment-title {
        color: black !important;
    }
    
    .highlight-text {
        color: #333 !important;
    }
    
    .step-number {
        color: #666 !important;
    }
}














.cookies-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--coral-accent), transparent);
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cookies-title {
    font-family: 'Raleway', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--ghost-white);
    margin-bottom: 20px;
    letter-spacing: -0.8px;
}

.cookies-intro {
    font-size: 18px;
    color: var(--silver-mist);
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 28px;
}

.update-badge {
    display: inline-flex;
    background: rgba(255, 0, 110, 0.1);
    border: 1px solid rgba(255, 0, 110, 0.3);
    padding: 8px 20px;
}

.badge-text {
    font-size: 14px;
    color: var(--coral-accent);
    font-weight: 500;
}

.cookies-content {
    padding: 80px 28px;
    background: var(--midnight-canvas);
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
}

.cookies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.cookie-category-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 28px 24px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.cookie-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 110, 0.03), transparent);
    transition: left 0.6s ease;
}

.cookie-category-card:hover::before {
    left: 100%;
}

.cookie-category-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 0, 110, 0.3);
    transform: translateY(-4px);
}

.essential-card {
    border-left: 4px solid #43e97b;
}

.functional-card {
    border-left: 4px solid #4facfe;
}

.analytics-card {
    border-left: 4px solid #f093fb;
}

.marketing-card {
    border-left: 4px solid #ffa726;
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.category-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
}

.essential-icon {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.functional-icon {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.analytics-icon {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.marketing-icon {
    background: linear-gradient(135deg, #ffa726, #ff7043);
}

.category-title {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--ghost-white);
    margin: 0;
    flex: 1;
    margin-left: 16px;
}

.status-indicator {
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.active-status {
    background: rgba(67, 233, 123, 0.2);
    color: #43e97b;
    border: 1px solid rgba(67, 233, 123, 0.3);
}

.optional-status {
    background: rgba(79, 172, 254, 0.2);
    color: #4facfe;
    border: 1px solid rgba(79, 172, 254, 0.3);
}

.inactive-status {
    background: rgba(158, 158, 158, 0.2);
    color: #9e9e9e;
    border: 1px solid rgba(158, 158, 158, 0.3);
}

.category-description p {
    font-size: 14px;
    color: var(--silver-mist);
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 16px;
}

.cookie-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.example-item {
    background: rgba(255, 255, 255, 0.08);
    color: var(--silver-mist);
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookies-info-section {
    margin-bottom: 50px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 0, 110, 0.2);
    transform: translateY(-2px);
}

.info-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
}

.data-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.control-icon {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.privacy-icon {
    background: linear-gradient(135deg, #fa709a, #fee140);
}

.info-content {
    flex: 1;
}

.info-title {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--ghost-white);
    margin-bottom: 8px;
}

.info-text {
    font-size: 14px;
    color: var(--silver-mist);
    opacity: 0.9;
    line-height: 1.6;
}

.cookies-actions {
    background: rgba(255, 0, 110, 0.06);
    border: 1px solid rgba(255, 0, 110, 0.2);
    padding: 36px 32px;
    text-align: center;
}

.actions-title {
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--ghost-white);
    margin-bottom: 12px;
}

.actions-description {
    font-size: 15px;
    color: var(--silver-mist);
    opacity: 0.9;
    margin-bottom: 28px;
    line-height: 1.6;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.action-btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
}

.primary-action {
    background: var(--coral-accent);
    color: white;
}

.primary-action:hover {
    background: var(--deep-coral);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 110, 0.3);
}

.secondary-action {
    background: transparent;
    color: var(--silver-mist);
    border: 2px solid var(--silver-mist);
}

.secondary-action:hover {
    background: var(--silver-mist);
    color: var(--ocean-depth);
    transform: translateY(-1px);
}

.tertiary-action {
    background: rgba(255, 255, 255, 0.08);
    color: var(--silver-mist);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tertiary-action:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 890px) {
    .cookies-hero {
        padding: 100px 21px 50px;
    }
    
    .cookies-title {
        font-size: 38px;
    }
    
    .cookies-content {
        padding: 60px 21px;
    }
    
    .cookies-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .action-btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 640px) {
    .cookies-title {
        font-size: 32px;
    }
    
    .cookies-intro {
        font-size: 16px;
    }
    
    .cookie-category-card {
        padding: 24px 20px;
    }
    
    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .category-title {
        margin-left: 0;
        margin-top: 8px;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 20px;
    }
    
    .info-icon {
        margin: 0 auto;
    }
    
    .cookies-actions {
        padding: 28px 24px;
    }
}

/* Animation enhancements */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-category-card {
    animation: slideInUp 0.6s ease-out;
}

.cookie-category-card:nth-child(2) {
    animation-delay: 0.1s;
}

.cookie-category-card:nth-child(3) {
    animation-delay: 0.2s;
}

.cookie-category-card:nth-child(4) {
    animation-delay: 0.3s;
}

.info-card {
    animation: slideInUp 0.6s ease-out;
}

.info-card:nth-child(2) {
    animation-delay: 0.2s;
}

.info-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* Focus states for accessibility */
.action-btn:focus {
    outline: 2px solid var(--coral-accent);
    outline-offset: 2px;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}


















.privacy-hero {
    padding: 120px 28px 60px;
    background: linear-gradient(135deg, var(--ocean-depth) 0%, var(--midnight-canvas) 100%);
    position: relative;
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--coral-accent), transparent);
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.privacy-title {
    font-family: 'Raleway', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--ghost-white);
    margin-bottom: 20px;
    letter-spacing: -0.8px;
}

.privacy-intro {
    font-size: 18px;
    color: var(--silver-mist);
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 32px;
}

.compliance-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.badge-item {
    background: rgba(255, 0, 110, 0.1);
    border: 1px solid rgba(255, 0, 110, 0.3);
    padding: 8px 16px;
}

.badge-label {
    font-size: 13px;
    color: var(--coral-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.privacy-content {
    padding: 80px 28px;
    background: var(--midnight-canvas);
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Raleway', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--ghost-white);
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: -0.5px;
}

.data-lifecycle {
    margin-bottom: 80px;
}

.lifecycle-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.lifecycle-step {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 28px 24px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.lifecycle-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 110, 0.03), transparent);
    transition: left 0.6s ease;
}

.lifecycle-step:hover::before {
    left: 100%;
}

.lifecycle-step:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 0, 110, 0.3);
    transform: translateY(-4px);
}

.lifecycle-step:nth-child(1) {
    border-left: 4px solid #4facfe;
}

.lifecycle-step:nth-child(2) {
    border-left: 4px solid #f093fb;
}

.lifecycle-step:nth-child(3) {
    border-left: 4px solid #43e97b;
}

.lifecycle-step:nth-child(4) {
    border-left: 4px solid #ffa726;
}

.step-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.collect-icon {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.process-icon {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.store-icon {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.delete-icon {
    background: linear-gradient(135deg, #ffa726, #ff7043);
}

.step-title {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--ghost-white);
    margin-bottom: 12px;
}

.step-description {
    font-size: 14px;
    color: var(--silver-mist);
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 16px;
}

.data-types {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.data-tag {
    background: rgba(255, 255, 255, 0.08);
    color: var(--silver-mist);
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.privacy-principles {
    margin-bottom: 80px;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.principle-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.principle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 110, 0.03), transparent);
    transition: left 0.6s ease;
}

.principle-card:hover::before {
    left: 100%;
}

.principle-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 0, 110, 0.3);
    transform: translateY(-4px);
}

.principle-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
}

.transparency-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.security-icon {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.minimization-icon {
    background: linear-gradient(135deg, #fa709a, #fee140);
}

.control-icon {
    background: linear-gradient(135deg, #a8edea, #fed6e3);
}

.principle-content {
    flex: 1;
}

.principle-title {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--ghost-white);
    margin-bottom: 10px;
}

.principle-text {
    font-size: 14px;
    color: var(--silver-mist);
    opacity: 0.9;
    line-height: 1.6;
}

.user-rights {
    margin-bottom: 60px;
}

.rights-container {
    max-width: 900px;
    margin: 0 auto;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.right-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.right-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 0, 110, 0.2);
    transform: translateX(4px);
}

.right-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
}

.access-icon {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.correction-icon {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.deletion-icon {
    background: linear-gradient(135deg, #ffa726, #ff7043);
}

.portability-icon {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.objection-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.restriction-icon {
    background: linear-gradient(135deg, #fa709a, #fee140);
}

.right-content {
    flex: 1;
}

.right-title {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--ghost-white);
    margin-bottom: 4px;
}

.right-description {
    font-size: 13px;
    color: var(--silver-mist);
    opacity: 0.9;
    line-height: 1.5;
}

.privacy-actions {
    background: rgba(255, 0, 110, 0.06);
    border: 1px solid rgba(255, 0, 110, 0.2);
    padding: 40px 32px;
    text-align: center;
}

.actions-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.actions-title {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--ghost-white);
    margin-bottom: 12px;
}

.actions-description {
    font-size: 15px;
    color: var(--silver-mist);
    opacity: 0.9;
    margin-bottom: 28px;
    line-height: 1.6;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.action-btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
}

.primary-action {
    background: var(--coral-accent);
    color: white;
}

.primary-action:hover {
    background: var(--deep-coral);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 110, 0.3);
}

.secondary-action {
    background: transparent;
    color: var(--silver-mist);
    border: 2px solid var(--silver-mist);
}

.secondary-action:hover {
    background: var(--silver-mist);
    color: var(--ocean-depth);
    transform: translateY(-1px);
}

.tertiary-action {
    background: rgba(255, 255, 255, 0.08);
    color: var(--silver-mist);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tertiary-action:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.privacy-contact {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-note {
    font-size: 14px;
    color: var(--silver-mist);
    opacity: 0.8;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 890px) {
    .privacy-hero {
        padding: 100px 21px 50px;
    }
    
    .privacy-title {
        font-size: 38px;
    }
    
    .privacy-content {
        padding: 60px 21px;
    }
    
    .lifecycle-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .principle-card {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 24px 20px;
    }
    
    .principle-icon {
        margin: 0 auto;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .action-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .compliance-badges {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

@media (max-width: 640px) {
    .privacy-title {
        font-size: 32px;
    }
    
    .privacy-intro {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .lifecycle-step {
        padding: 24px 20px;
    }
    
    .right-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 16px;
    }
    
    .right-icon {
        margin: 0 auto;
    }
    
    .privacy-actions {
        padding: 32px 24px;
    }
    
    .actions-title {
        font-size: 20px;
    }
    
    .actions-description {
        font-size: 14px;
    }
}

/* Animation enhancements */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.lifecycle-step {
    animation: slideInUp 0.6s ease-out;
}

.lifecycle-step:nth-child(1) {
    animation-delay: 0.1s;
}

.lifecycle-step:nth-child(2) {
    animation-delay: 0.2s;
}

.lifecycle-step:nth-child(3) {
    animation-delay: 0.3s;
}

.lifecycle-step:nth-child(4) {
    animation-delay: 0.4s;
}

.principle-card {
    animation: slideInUp 0.6s ease-out;
}

.principle-card:nth-child(1) {
    animation-delay: 0.1s;
}

.principle-card:nth-child(2) {
    animation-delay: 0.2s;
}

.principle-card:nth-child(3) {
    animation-delay: 0.3s;
}

.principle-card:nth-child(4) {
    animation-delay: 0.4s;
}

.right-item:nth-child(odd) {
    animation: slideInLeft 0.6s ease-out;
}

.right-item:nth-child(even) {
    animation: slideInRight 0.6s ease-out;
}

.right-item:nth-child(1) { animation-delay: 0.1s; }
.right-item:nth-child(2) { animation-delay: 0.2s; }
.right-item:nth-child(3) { animation-delay: 0.3s; }
.right-item:nth-child(4) { animation-delay: 0.4s; }
.right-item:nth-child(5) { animation-delay: 0.5s; }
.right-item:nth-child(6) { animation-delay: 0.6s; }

/* Enhanced hover effects */
.lifecycle-step:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    transition: transform 0.3s ease;
}

.lifecycle-step:hover .data-tag {
    background: rgba(255, 0, 110, 0.1);
    border-color: rgba(255, 0, 110, 0.3);
    color: var(--coral-accent);
    transition: all 0.3s ease;
}

.principle-card:hover .principle-icon {
    transform: scale(1.1) rotate(-3deg);
    transition: transform 0.3s ease;
}

.right-item:hover .right-icon {
    transform: scale(1.15);
    transition: transform 0.3s ease;
}

.badge-item:hover {
    background: rgba(255, 0, 110, 0.15);
    border-color: rgba(255, 0, 110, 0.4);
    transform: scale(1.02);
    transition: all 0.3s ease;
}

/* Loading animation for hero section */
.privacy-title {
    animation: slideInUp 0.8s ease-out;
}

.privacy-intro {
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.compliance-badges {
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.section-title {
    animation: slideInUp 0.6s ease-out;
}

/* Focus states for accessibility */
.action-btn:focus,
.lifecycle-step:focus,
.principle-card:focus,
.right-item:focus {
    outline: 2px solid var(--coral-accent);
    outline-offset: 4px;
}

/* Interactive data flow visualization */
.lifecycle-step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -12px;
    width: 0;
    height: 0;
    border-left: 8px solid rgba(255, 0, 110, 0.3);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lifecycle-step:hover::after {
    opacity: 1;
}

.lifecycle-step:last-child::after {
    display: none;
}

/* Pulse animation for important elements */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 110, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 0, 110, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 110, 0);
    }
}

.primary-action {
    animation: pulse 2s infinite;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Print styles */
@media print {
    .primary-navigation,
    .main-footer,
    .privacy-actions {
        display: none;
    }
    
    .privacy-hero,
    .privacy-content {
        padding: 20px 0;
        background: white !important;
        color: black !important;
    }
    
    .privacy-title,
    .section-title {
        color: black !important;
    }
    
    .highlight-text {
        color: #333 !important;
    }
    
    .lifecycle-step,
    .principle-card,
    .right-item {
        background: #f9f9f9 !important;
        border: 1px solid #ddd !important;
        color: black !important;
        page-break-inside: avoid;
    }
    
    .step-title,
    .principle-title,
    .right-title {
        color: black !important;
    }
    
    .step-description,
    .principle-text,
    .right-description {
        color: #333 !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .lifecycle-step,
    .principle-card,
    .right-item {
        border-width: 2px;
    }
    
    .badge-item {
        border-width: 2px;
    }
    
    .data-tag,
    .example-item {
        border-width: 2px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .primary-action {
        animation: none;
    }
}

/* Dark mode enhancements */
@media (prefers-color-scheme: dark) {
    .lifecycle-step,
    .principle-card,
    .right-item {
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(255, 255, 255, 0.15);
    }
    
    .privacy-actions {
        background: rgba(255, 0, 110, 0.08);
        border-color: rgba(255, 0, 110, 0.25);
    }
}




















.thankyou-hero {
    padding: 120px 28px 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--ocean-depth) 0%, var(--midnight-canvas) 100%);
    position: relative;
}

.thankyou-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--coral-accent), transparent);
}

.thankyou-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thankyou-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.success-icon {
    margin-bottom: 16px;
}

.check-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: checkAppear 0.6s ease-out;
}

@keyframes checkAppear {
    0% {
        transform: scale(0) rotate(45deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.1) rotate(45deg);
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.check-mark {
    width: 24px;
    height: 12px;
    border-left: 3px solid white;
    border-bottom: 3px solid white;
    transform: rotate(-45deg);
    animation: checkDraw 0.3s ease-out 0.3s both;
}

@keyframes checkDraw {
    0% {
        width: 0;
        height: 0;
    }
    50% {
        width: 12px;
        height: 0;
    }
    100% {
        width: 24px;
        height: 12px;
    }
}

.thankyou-title {
    font-family: 'Raleway', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--ghost-white);
    margin: 0;
    letter-spacing: -0.6px;
    animation: slideInUp 0.6s ease-out 0.2s both;
}

.thankyou-message {
    font-size: 18px;
    color: var(--silver-mist);
    opacity: 0.9;
    line-height: 1.7;
    max-width: 600px;
    margin: 0;
    animation: slideInUp 0.6s ease-out 0.4s both;
}

.response-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 16px 0;
    animation: slideInUp 0.6s ease-out 0.6s both;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--coral-accent);
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.07);
    border-left-color: #43e97b;
    transform: translateX(4px);
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
}

.time-icon {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.support-icon {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.personal-icon {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.info-text {
    font-size: 15px;
    color: var(--silver-mist);
    opacity: 0.9;
    text-align: left;
}

.info-text strong {
    color: var(--ghost-white);
}

.next-steps {
    width: 100%;
    animation: slideInUp 0.6s ease-out 0.8s both;
}

.steps-title {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--ghost-white);
    margin-bottom: 24px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.step-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 20px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 110, 0.03), transparent);
    transition: left 0.6s ease;
}

.step-card:hover::before {
    left: 100%;
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 0, 110, 0.3);
    transform: translateY(-4px);
}

.step-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin: 0 auto 16px;
}

.explore-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.blog-icon {
    background: linear-gradient(135deg, #fa709a, #fee140);
}

.portfolio-icon {
    background: linear-gradient(135deg, #a8edea, #fed6e3);
}

.step-title {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--ghost-white);
    margin-bottom: 8px;
}

.step-description {
    font-size: 13px;
    color: var(--silver-mist);
    opacity: 0.8;
    margin-bottom: 16px;
    line-height: 1.5;
}

.step-link {
    display: inline-block;
    color: var(--coral-accent);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border: 1px solid rgba(255, 0, 110, 0.3);
    transition: all 0.3s ease;
}

.step-link:hover {
    background: var(--coral-accent);
    color: white;
    transform: translateY(-1px);
}

.thankyou-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideInUp 0.6s ease-out 1s both;
}

.primary-btn {
    background: var(--coral-accent);
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
}

.primary-btn:hover {
    background: var(--deep-coral);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 110, 0.3);
}

.secondary-btn {
    background: transparent;
    color: var(--silver-mist);
    border: 2px solid var(--silver-mist);
    padding: 14px 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background: var(--silver-mist);
    color: var(--ocean-depth);
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 890px) {
    .thankyou-hero {
        padding: 100px 21px 60px;
    }
    
    .thankyou-title {
        font-size: 36px;
    }
    
    .thankyou-message {
        font-size: 16px;
    }
    
    .response-info {
        gap: 16px;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 20px 16px;
    }
    
    .info-icon {
        margin: 0 auto;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .thankyou-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .primary-btn,
    .secondary-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .thankyou-title {
        font-size: 32px;
    }
    
    .check-circle {
        width: 64px;
        height: 64px;
    }
    
    .check-mark {
        width: 20px;
        height: 10px;
    }
    
    .steps-title {
        font-size: 20px;
    }
    
    .step-card {
        padding: 20px 16px;
    }
    
    .info-item {
        padding: 16px 12px;
    }
}

/* Animation enhancements */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-card {
    animation: slideInUp 0.6s ease-out;
}

.step-card:nth-child(1) {
    animation-delay: 0.9s;
    animation-fill-mode: both;
}

.step-card:nth-child(2) {
    animation-delay: 1.0s;
    animation-fill-mode: both;
}

.step-card:nth-child(3) {
    animation-delay: 1.1s;
    animation-fill-mode: both;
}

/* Enhanced hover effects */
.step-card:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    transition: transform 0.3s ease;
}

.info-item:hover .info-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Focus states for accessibility */
.step-link:focus,
.primary-btn:focus,
.secondary-btn:focus {
    outline: 2px solid var(--coral-accent);
    outline-offset: 2px;
}
