:root {
    --primary-color: #5B4FE6;
    --primary-dark: #4839C7;
    --primary-light: #7B6FF0;
    --secondary-color: #FF6B9D;
    --secondary-dark: #E85585;
    --secondary-light: #FF8AB3;
    --accent-color: #00D4AA;
    --accent-dark: #00B890;
    --accent-light: #33DDBB;
    
    --text-dark: #1A1A2E;
    --text-medium: #4A4A68;
    --text-light: #8B8BA7;
    --bg-white: #FEFEFE;
    --bg-light: #F8F9FE;
    --bg-gradient-1: #F0EFFF;
    --bg-gradient-2: #FFE8F0;
    --bg-gradient-3: #E0FFF9;
    
    --shadow-sm: 0 2px 8px rgba(91, 79, 230, 0.08), 0 1px 4px rgba(91, 79, 230, 0.06);
    --shadow-md: 0 4px 16px rgba(91, 79, 230, 0.12), 0 2px 8px rgba(91, 79, 230, 0.08);
    --shadow-lg: 0 12px 32px rgba(91, 79, 230, 0.16), 0 4px 16px rgba(91, 79, 230, 0.12);
    --shadow-xl: 0 20px 48px rgba(91, 79, 230, 0.20), 0 8px 24px rgba(91, 79, 230, 0.16);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Manrope', sans-serif;
    
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 48px;
    --spacing-xl: 80px;
    --spacing-2xl: 120px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(254, 254, 254, 0.95);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(91, 79, 230, 0.08);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: var(--spacing-sm) var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-link {
    font-weight: 500;
    font-size: 15px;
    color: var(--text-medium);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link.active {
    color: var(--primary-color);
}

.search-toggle {
    background: none;
    border: none;
    color: var(--text-medium);
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.search-toggle:hover {
    color: var(--primary-color);
    background: var(--bg-gradient-1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.search-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.search-container {
    max-width: 720px;
    width: 90%;
    position: relative;
}

.search-close {
    position: absolute;
    top: -48px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.search-close:hover {
    transform: rotate(90deg);
}

.search-input {
    width: 100%;
    padding: 20px 24px;
    font-size: 24px;
    font-family: var(--font-body);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-light);
    background: rgba(255, 255, 255, 0.15);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.hero {
    padding: 160px 0 var(--spacing-2xl);
    position: relative;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(91, 79, 230, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 60%, rgba(255, 107, 157, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(0, 212, 170, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease 0.3s backwards;
}

.hero-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border-color: rgba(91, 79, 230, 0.2);
}

.btn-outline:hover {
    background: var(--bg-gradient-1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.intro-section {
    padding: var(--spacing-xl) 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.intro-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.intro-text p {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.intro-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.section-intro {
    font-size: 20px;
    color: var(--text-medium);
    text-align: center;
    max-width: 720px;
    margin: 0 auto var(--spacing-lg);
    line-height: 1.7;
}

.timeline-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--bg-gradient-1) 0%, var(--bg-gradient-3) 100%);
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: var(--spacing-lg) 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-left: 100px;
    margin-bottom: var(--spacing-xl);
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.timeline-marker {
    position: absolute;
    left: 26px;
    top: 8px;
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 4px solid var(--bg-white);
    box-shadow: var(--shadow-md);
}

.timeline-content {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.timeline-date {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    background: var(--bg-gradient-1);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-sm);
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.timeline-content p {
    color: var(--text-medium);
    line-height: 1.7;
}

.services-accordion {
    padding: var(--spacing-2xl) 0;
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: white;
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-sm);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: var(--shadow-md);
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: var(--bg-gradient-1);
}

.accordion-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.accordion-header h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    flex: 1;
}

.accordion-arrow {
    color: var(--primary-color);
    font-size: 18px;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-content {
    max-height: 800px;
}

.accordion-content p {
    padding: 0 var(--spacing-md) var(--spacing-md);
    color: var(--text-medium);
    line-height: 1.8;
}

.accordion-content p:last-child {
    padding-bottom: var(--spacing-md);
}

.horizontal-scroll-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--bg-gradient-2) 0%, var(--bg-gradient-1) 100%);
    overflow: hidden;
}

.scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    padding: var(--spacing-lg) 0;
    margin-top: var(--spacing-lg);
    scrollbar-width: thin;
    scrollbar-color: var(--primary-light) var(--bg-light);
}

.scroll-container::-webkit-scrollbar {
    height: 8px;
}

.scroll-container::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 4px;
}

.scroll-container::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 4px;
}

.scroll-content {
    display: flex;
    gap: var(--spacing-md);
    padding: 0 var(--spacing-md);
    min-width: min-content;
}

.scroll-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    min-width: 380px;
    max-width: 380px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.scroll-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.scroll-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    margin-bottom: var(--spacing-sm);
}

.scroll-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.scroll-card p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

.scroll-card img {
    border-radius: var(--radius-md);
    margin-top: var(--spacing-sm);
}

.features-grid {
    padding: var(--spacing-2xl) 0;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.feature-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    margin-bottom: var(--spacing-sm);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.feature-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

.cta-section {
    padding: var(--spacing-2xl) 0;
    position: relative;
    overflow: hidden;
}

.cta-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(91, 79, 230, 0.15) 0%, transparent 60%),
                radial-gradient(circle at 70% 50%, rgba(0, 212, 170, 0.12) 0%, transparent 60%);
    z-index: -1;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.cta-content p {
    font-size: 20px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.main-footer {
    background: var(--text-dark);
    color: white;
    padding: var(--spacing-xl) 0 var(--spacing-md);
    position: relative;
    overflow: hidden;
}

.footer-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(91, 79, 230, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 107, 157, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.footer-section h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: white;
}

.footer-logo {
    margin-bottom: var(--spacing-sm);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--primary-light);
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}

.page-hero {
    padding: 140px 0 var(--spacing-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 30%, rgba(91, 79, 230, 0.15) 0%, transparent 60%);
    z-index: -1;
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(48px, 6vw, 64px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.page-hero-subtitle {
    font-size: 20px;
    color: var(--text-medium);
    max-width: 720px;
    margin: 0 auto;
}

.story-intro {
    padding: var(--spacing-xl) 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.story-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.story-text p {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.story-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.values-section {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.value-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: var(--spacing-sm);
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.value-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

.approach-section {
    padding: var(--spacing-2xl) 0;
}

.approach-content {
    max-width: 900px;
    margin: var(--spacing-lg) auto 0;
}

.approach-item {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.approach-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.approach-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-light);
    line-height: 1;
    flex-shrink: 0;
}

.approach-text h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.approach-text p {
    color: var(--text-medium);
    line-height: 1.7;
}

.mission-section {
    padding: var(--spacing-2xl) 0;
    position: relative;
    overflow: hidden;
}

.mission-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 212, 170, 0.12) 0%, transparent 70%);
    z-index: -1;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.mission-text {
    font-size: 20px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.team-philosophy {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-light);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.philosophy-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.philosophy-card i {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}

.philosophy-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.philosophy-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

.commitment-section {
    padding: var(--spacing-2xl) 0;
}

.commitment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.commitment-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.commitment-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.commitment-text p {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.training-intro {
    padding: var(--spacing-xl) 0;
}

.intro-content-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content-centered h2 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.intro-content-centered p {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.8;
}

.training-modules {
    padding: var(--spacing-xl) 0;
}

.module-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    margin-bottom: var(--spacing-xl);
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.module-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.module-card.featured {
    border: 2px solid var(--primary-light);
}

.module-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.module-content {
    padding: var(--spacing-lg);
}

.module-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: var(--spacing-sm);
}

.module-content h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.module-content > p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.module-topics {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.module-topics li {
    display: flex;
    align-items: start;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-xs);
    color: var(--text-medium);
}

.module-topics i {
    color: var(--accent-color);
    margin-top: 4px;
    flex-shrink: 0;
}

.learning-format {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-light);
}

.format-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.format-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
}

.format-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.format-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.format-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.format-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

.who-benefits {
    padding: var(--spacing-2xl) 0;
}

.benefits-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.benefit-item {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: var(--spacing-sm);
}

.benefit-item h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.benefit-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

.methodology-intro {
    padding: var(--spacing-xl) 0;
}

.methodology-pillars {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-light);
}

.pillars-grid {
    display: grid;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.pillar-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    gap: var(--spacing-md);
    transition: all 0.3s ease;
}

.pillar-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.pillar-number {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 700;
    color: var(--primary-light);
    line-height: 1;
    flex-shrink: 0;
}

.pillar-content h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.pillar-content > p {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.pillar-content ul {
    list-style: none;
    padding-left: 0;
}

.pillar-content li {
    padding-left: 24px;
    position: relative;
    margin-bottom: var(--spacing-xs);
    color: var(--text-medium);
}

.pillar-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 600;
}

.learning-cycle {
    padding: var(--spacing-2xl) 0;
}

.cycle-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: var(--spacing-lg);
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.cycle-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin: 0 auto var(--spacing-sm);
    box-shadow: var(--shadow-md);
}

.cycle-step h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.cycle-step p {
    color: var(--text-medium);
    font-size: 14px;
    line-height: 1.6;
}

.cycle-arrow {
    color: var(--primary-light);
    font-size: 24px;
}

.teaching-methods {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-light);
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.method-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.method-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.method-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.method-content {
    padding: var(--spacing-md);
}

.method-content h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.method-content p {
    color: var(--text-medium);
    line-height: 1.7;
}

.learning-environment {
    padding: var(--spacing-2xl) 0;
}

.environment-content {
    max-width: 1000px;
    margin: var(--spacing-lg) auto 0;
}

.environment-text h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.environment-text > p {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

.environment-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.env-feature {
    display: flex;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.env-feature i {
    color: var(--primary-color);
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 4px;
}

.env-feature h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.env-feature p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 14px;
}

.materials-section {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-light);
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.material-item {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
}

.material-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.material-item i {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-xs);
}

.material-item h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.material-item p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 14px;
}

.continuous-improvement {
    padding: var(--spacing-2xl) 0;
}

.improvement-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.improvement-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.improvement-text p {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.improvement-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-section {
    padding: var(--spacing-2xl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-lg);
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.contact-info > p {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-item {
    display: flex;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.contact-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-text h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.contact-text p {
    color: var(--text-medium);
    line-height: 1.6;
}

.contact-text a {
    color: var(--text-medium);
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--primary-color);
}

.contact-form-wrapper {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid rgba(91, 79, 230, 0.15);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(91, 79, 230, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: start;
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: var(--spacing-xs);
    cursor: pointer;
    font-size: 14px;
    color: var(--text-medium);
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-form .btn {
    margin-top: var(--spacing-sm);
}

.map-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.map-container {
    margin-top: var(--spacing-md);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.faq-section {
    padding: var(--spacing-2xl) 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.faq-item {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.faq-item h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.faq-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

.thanks-section {
    padding: 160px 0 var(--spacing-2xl);
    position: relative;
    overflow: hidden;
}

.thanks-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 40%, rgba(0, 212, 170, 0.15) 0%, transparent 60%);
    z-index: -1;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 64px;
    margin: 0 auto var(--spacing-md);
    box-shadow: var(--shadow-xl);
}

.thanks-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.thanks-message {
    font-size: 20px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

.thanks-info {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--spacing-lg);
    text-align: left;
}

.thanks-info p {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.thanks-info ul {
    list-style: none;
    padding-left: 0;
}

.thanks-info li {
    padding-left: 28px;
    position: relative;
    margin-bottom: var(--spacing-xs);
    color: var(--text-medium);
}

.thanks-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 18px;
}

.thanks-info a {
    color: var(--primary-color);
    text-decoration: underline;
}

.thanks-actions {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.legal-page {
    padding: 140px 0 var(--spacing-2xl);
}

.legal-page h1 {
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.legal-updated {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content section {
    margin-bottom: var(--spacing-lg);
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}

.legal-content h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-xs);
}

.legal-content p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
}

.legal-content ul {
    margin-bottom: var(--spacing-sm);
    padding-left: var(--spacing-md);
}

.legal-content li {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: var(--spacing-xs);
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--primary-dark);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--spacing-md) 0;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.cookie-table thead {
    background: var(--primary-color);
    color: white;
}

.cookie-table th {
    padding: var(--spacing-sm);
    text-align: left;
    font-weight: 600;
}

.cookie-table td {
    padding: var(--spacing-sm);
    border-bottom: 1px solid rgba(91, 79, 230, 0.1);
}

.cookie-table tbody tr:last-child td {
    border-bottom: none;
}

.cookie-table tbody tr:hover {
    background: var(--bg-light);
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: var(--spacing-md);
    box-shadow: 0 -4px 24px rgba(91, 79, 230, 0.15);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
    min-width: 280px;
}

.cookie-consent-text p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: var(--spacing-xs);
}

.cookie-consent-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
}

.cookie-consent .btn {
    padding: 12px 24px;
    font-size: 14px;
    white-space: nowrap;
}

.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(8px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cookie-settings-modal.show {
    opacity: 1;
    pointer-events: all;
}

.cookie-settings-content {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-settings-content h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.cookie-category {
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm);
    background: var(--bg-light);
    border-radius: var(--radius-sm);
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xs);
}

.cookie-category h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-category p {
    color: var(--text-medium);
    font-size: 14px;
    line-height: 1.6;
}

.cookie-toggle {
    position: relative;
    width: 48px;
    height: 24px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ccc;
    border-radius: 24px;
    transition: 0.3s;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: var(--primary-color);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-settings-actions {
    display: flex;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-md);
    justify-content: flex-end;
}

@media (max-width: 1024px) {
    .hero-content,
    .intro-grid,
    .story-content,
    .commitment-content,
    .improvement-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .module-card {
        grid-template-columns: 1fr;
    }
    
    .cycle-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 60px;
        --spacing-2xl: 80px;
    }
    
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero {
        padding: 120px 0 var(--spacing-xl);
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-marker {
        left: 6px;
    }
    
    .scroll-card {
        min-width: 300px;
        max-width: 300px;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-consent-buttons {
        flex-direction: column;
    }
    
    .cookie-consent .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .search-input {
        font-size: 18px;
        padding: 16px 20px;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .scroll-card {
        min-width: 280px;
        max-width: 280px;
    }
}