:root {
    --color-primary: #6B9F3E;
    --color-primary-dark: #558030;
    --color-primary-light: #8BC34A;
    --color-secondary: #F5A623;
    --color-accent: #E67E22;
    --color-bg: #FDFDF8;
    --color-bg-alt: #F8F9F5;
    --color-text: #2C3E2B;
    --color-text-light: #5A6F58;
    --color-border: #D4E3CC;
    --color-white: #FFFFFF;
    --color-success: #4CAF50;
    --color-error: #E74C3C;
    
    --shadow-sm: 0 2px 8px rgba(107, 159, 62, 0.08);
    --shadow-md: 0 4px 16px rgba(107, 159, 62, 0.12), 0 2px 8px rgba(107, 159, 62, 0.06);
    --shadow-lg: 0 12px 32px rgba(107, 159, 62, 0.16), 0 4px 16px rgba(107, 159, 62, 0.08);
    --shadow-xl: 0 20px 48px rgba(107, 159, 62, 0.2), 0 8px 24px rgba(107, 159, 62, 0.1);
    
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-xl: 48px;
    --radius-blob: 60% 40% 30% 70% / 60% 30% 70% 40%;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Onest', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--space-md);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-md);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: var(--space-sm);
}

h4 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

p {
    margin-bottom: var(--space-sm);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-base);
}

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

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

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-base);
    text-align: center;
}

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

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

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

.btn-secondary:hover {
    background-color: #E09517;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-md);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-base);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-sm);
    padding-bottom: var(--space-sm);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-md);
    align-items: center;
}

.nav-menu a {
    color: var(--color-text);
    font-weight: 500;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-primary);
    background-color: rgba(107, 159, 62, 0.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 3px;
    transition: var(--transition-base);
}

.hero {
    position: relative;
    padding: calc(80px + var(--space-xl)) 0 var(--space-xl);
    overflow: hidden;
}

.hero-blob {
    position: absolute;
    border-radius: var(--radius-blob);
    opacity: 0.15;
    z-index: 0;
}

.hero-blob.blob-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-secondary));
    top: -200px;
    left: -100px;
    animation: blob-float 20s ease-in-out infinite;
}

.hero-blob.blob-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
    bottom: -150px;
    right: -100px;
    animation: blob-float 25s ease-in-out infinite reverse;
}

@keyframes blob-float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    color: var(--color-text);
    margin-bottom: var(--space-md);
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.hero-images {
    position: relative;
    height: 500px;
}

.hero-image-card {
    position: absolute;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-smooth);
}

.hero-image-card:hover {
    transform: scale(1.02);
}

.hero-image-card.card-1 {
    width: 70%;
    height: 75%;
    top: 0;
    right: 0;
    transform: rotate(3deg);
    z-index: 2;
}

.hero-image-card.card-2 {
    width: 60%;
    height: 65%;
    bottom: 0;
    left: 0;
    transform: rotate(-4deg);
    z-index: 1;
}

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

.page-hero {
    position: relative;
    padding: calc(80px + var(--space-lg)) 0 var(--space-lg);
    text-align: center;
    overflow: hidden;
}

.page-hero-content h1 {
    margin-bottom: var(--space-sm);
}

.page-hero-content p {
    font-size: 1.25rem;
    color: var(--color-text-light);
}

section {
    padding: var(--space-xl) 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-lg);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--color-text-light);
}

.services-intro {
    position: relative;
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
}

.wave-divider {
    position: absolute;
    left: 0;
    right: 0;
    height: 100px;
    overflow: hidden;
}

.wave-divider.top {
    top: 0;
}

.wave-divider.bottom {
    bottom: 0;
}

.wave-divider::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 100%;
    background: var(--color-bg);
    border-radius: 50%;
}

.wave-divider.top::before {
    top: -50%;
    left: -50%;
}

.wave-divider.bottom::before {
    bottom: -50%;
    left: -50%;
}

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

.service-card {
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    font-size: 2rem;
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.service-card h3 {
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.service-card p {
    color: var(--color-text-light);
}

.why-choose {
    background-color: var(--color-bg);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-md);
}

.why-card {
    padding: var(--space-md);
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    border: 2px solid var(--color-border);
    transition: var(--transition-smooth);
}

.why-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-sm);
    font-size: 1.5rem;
    color: var(--color-white);
}

.featured-content {
    background-color: var(--color-bg-alt);
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.featured-grid.reverse {
    direction: rtl;
}

.featured-grid.reverse > * {
    direction: ltr;
}

.featured-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.featured-image:hover img {
    transform: scale(1.05);
}

.featured-text {
    padding: var(--space-md);
}

.feature-list {
    list-style: none;
    margin: var(--space-md) 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    color: var(--color-text-light);
}

.feature-list i {
    color: var(--color-primary);
    font-size: 1.25rem;
}

.team {
    position: relative;
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-md);
}

.team-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

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

.team-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: var(--space-md);
    text-align: center;
}

.team-role {
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.team-bio {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.cta-section {
    position: relative;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    overflow: hidden;
}

.cta-blob {
    position: absolute;
    border-radius: var(--radius-blob);
    opacity: 0.1;
}

.cta-blob.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--color-white);
    top: -150px;
    right: -100px;
}

.cta-blob.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--color-white);
    bottom: -100px;
    left: -100px;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
    opacity: 0.95;
}

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

.cta-buttons .btn-outline {
    border-color: var(--color-white);
    color: var(--color-white);
}

.cta-buttons .btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.footer {
    background-color: var(--color-text);
    color: var(--color-white);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.footer-logo img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-sm);
}

.footer-contact {
    margin-top: var(--space-md);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-xs);
}

.footer-col h4 {
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: var(--space-xs);
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-base);
}

.footer-col ul li a:hover {
    color: var(--color-white);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.story-content {
    padding: var(--space-lg) 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
    margin-bottom: var(--space-xl);
}

.story-grid.reverse {
    direction: rtl;
}

.story-grid.reverse > * {
    direction: ltr;
}

.story-text {
    padding: var(--space-md);
}

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

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.story-image:hover img {
    transform: scale(1.05);
}

.mission-section {
    margin: var(--space-xl) 0;
}

.mission-card {
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.values-section {
    margin: var(--space-xl) 0;
}

.values-section h2 {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-md);
}

.value-card {
    padding: var(--space-md);
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    border: 2px solid var(--color-border);
    text-align: center;
    transition: var(--transition-smooth);
}

.value-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-size: 2rem;
    color: var(--color-white);
}

.timeline-section {
    margin: var(--space-xl) 0;
}

.timeline-section h2 {
    text-align: center;
    margin-bottom: var(--space-lg);
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--color-border);
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    position: relative;
}

.timeline-date {
    text-align: right;
    padding-right: var(--space-md);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.timeline-content {
    padding-left: var(--space-md);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 8px;
    width: 16px;
    height: 16px;
    background: var(--color-primary);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px var(--color-bg);
}

.services-detail {
    padding: var(--space-lg) 0;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-xl);
}

.service-detail-card.reverse {
    direction: rtl;
}

.service-detail-card.reverse > * {
    direction: ltr;
}

.service-detail-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    font-size: 3rem;
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.service-features {
    margin-top: var(--space-md);
}

.feature-item {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

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

.feature-item h4 {
    margin-bottom: var(--space-xs);
}

.feature-item p {
    color: var(--color-text-light);
    margin: 0;
}

.service-detail-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.courses-intro {
    background-color: var(--color-bg-alt);
    padding: var(--space-lg) 0;
}

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

.courses-catalog {
    padding: var(--space-xl) 0;
}

.courses-catalog h2 {
    text-align: center;
    margin-bottom: var(--space-lg);
    margin-top: var(--space-xl);
}

.courses-catalog h2:first-child {
    margin-top: 0;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.course-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-smooth);
}

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

.course-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.course-card:hover .course-image img {
    transform: scale(1.1);
}

.course-badge {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    background: var(--color-primary);
    color: var(--color-white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
}

.course-content {
    padding: var(--space-md);
}

.course-meta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.course-meta span {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.course-topics {
    list-style: none;
    margin: var(--space-md) 0;
}

.course-topics li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-xs);
    margin-bottom: var(--space-xs);
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.course-topics i {
    color: var(--color-primary);
    margin-top: 4px;
}

.course-info {
    background-color: var(--color-bg-alt);
    padding: var(--space-lg) 0;
}

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

.info-card {
    padding: var(--space-md);
    border-radius: var(--radius-md);
    text-align: center;
}

.info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-size: 2rem;
    color: var(--color-white);
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.contact-info h2 {
    margin-bottom: var(--space-md);
}

.contact-details {
    margin-top: var(--space-lg);
}

.contact-item {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

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

.contact-text h4 {
    margin-bottom: var(--space-xs);
}

.contact-text p {
    color: var(--color-text-light);
    margin: 0;
}

.contact-form {
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
}

.contact-form h3 {
    margin-bottom: var(--space-md);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 600;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-sm);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: 'Onest', sans-serif;
    font-size: 1rem;
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(107, 159, 62, 0.1);
}

.form-group textarea {
    resize: vertical;
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-xs);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.map-section {
    padding: var(--space-lg) 0;
    background-color: var(--color-bg-alt);
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.thanks-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl) 0;
    overflow: hidden;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.thanks-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--color-success), var(--color-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-size: 4rem;
    color: var(--color-white);
    box-shadow: var(--shadow-lg);
}

.thanks-actions {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    margin-top: var(--space-lg);
    flex-wrap: wrap;
}

.legal-section {
    padding: calc(80px + var(--space-lg)) 0 var(--space-xl);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.legal-content h1 {
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.legal-date {
    color: var(--color-text-light);
    font-style: italic;
    margin-bottom: var(--space-lg);
}

.legal-content h2 {
    color: var(--color-text);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-md);
    padding-top: var(--space-md);
    border-top: 2px solid var(--color-border);
}

.legal-content h3 {
    color: var(--color-text);
    margin-top: var(--space-md);
}

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

.legal-content li {
    margin-bottom: var(--space-xs);
    color: var(--color-text-light);
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-md) 0;
}

.cookie-table th,
.cookie-table td {
    padding: var(--space-sm);
    text-align: left;
    border: 1px solid var(--color-border);
}

.cookie-table th {
    background-color: var(--color-bg-alt);
    font-weight: 600;
    color: var(--color-text);
}

.cookie-table td {
    color: var(--color-text-light);
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 43, 0.98);
    backdrop-filter: blur(10px);
    padding: var(--space-md);
    box-shadow: var(--shadow-xl);
    z-index: 9999;
    transform: translateY(100%);
    transition: var(--transition-smooth);
}

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

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

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

.cookie-consent-text p {
    color: var(--color-white);
    margin: 0;
}

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

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

.cookie-consent-buttons .btn {
    padding: 0.75rem 1.5rem;
}

@media (max-width: 1024px) {
    .hero-container,
    .featured-grid,
    .story-grid,
    .contact-grid,
    .service-detail-card {
        grid-template-columns: 1fr;
    }
    
    .hero-images {
        height: 400px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        padding-left: 60px;
    }
    
    .timeline-date {
        text-align: left;
        padding-right: 0;
    }
    
    .timeline-content {
        padding-left: 0;
    }
    
    .timeline-item::before {
        left: 30px;
    }
}

@media (max-width: 768px) {
    :root {
        --space-xl: 4rem;
        --space-lg: 3rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        padding: var(--space-md);
        box-shadow: var(--shadow-lg);
        transition: var(--transition-base);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-images {
        height: 350px;
    }
    
    .hero-image-card.card-1 {
        width: 75%;
        height: 70%;
    }
    
    .hero-image-card.card-2 {
        width: 65%;
        height: 60%;
    }
    
    .services-grid,
    .why-grid,
    .team-grid,
    .values-grid,
    .courses-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent-buttons {
        width: 100%;
    }
    
    .cookie-consent-buttons .btn {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-sm);
    }
    
    .hero {
        padding: calc(80px + var(--space-lg)) 0 var(--space-lg);
    }
    
    .hero-images {
        height: 300px;
    }
    
    section {
        padding: var(--space-lg) 0;
    }
    
    .service-card,
    .why-card,
    .value-card,
    .info-card {
        padding: var(--space-sm);
    }
    
    .legal-content {
        padding: var(--space-md);
    }
}