/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #f7fafc;
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.header {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2b6cb0;
    letter-spacing: -0.5px;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: transparent;
    border: none;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2d3748;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    list-style: none;
    margin-top: 16px;
    gap: 8px;
}

.nav-menu.active {
    display: flex;
}

.nav-menu li a {
    display: block;
    padding: 12px 16px;
    color: #4a5568;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background-color: #ebf8ff;
    color: #2b6cb0;
}

/* Hero Section */
.hero {
    padding: 40px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.card-hero {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 16px;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0.95;
}

.hero-image {
    border-radius: 12px;
    overflow: hidden;
}

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

/* Buttons and CTAs */
.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.cta-primary {
    background-color: #fff;
    color: #2b6cb0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.cta-secondary {
    background-color: transparent;
    color: #2b6cb0;
    border: 2px solid #2b6cb0;
}

.cta-secondary:hover {
    background-color: #2b6cb0;
    color: #fff;
}

/* Card Grids */
.intro-cards,
.programs-preview,
.why-choose,
.testimonials,
.approach,
.team-section,
.values,
.impact,
.programs-detail {
    padding: 60px 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    color: #1a202c;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.card-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card,
.feature-card,
.value-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.info-card:hover,
.feature-card:hover,
.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.info-card h3,
.feature-card h3,
.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #2d3748;
    font-weight: 600;
}

.info-card p,
.feature-card p,
.value-card p {
    color: #4a5568;
    line-height: 1.7;
}

/* Split Card Layout */
.about-preview,
.about-intro {
    padding: 60px 0;
    background-color: #fff;
}

.card-split {
    display: flex;
    flex-direction: column;
    gap: 32px;
    background-color: #f7fafc;
    border-radius: 16px;
    padding: 32px;
}

.split-text h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 700;
}

.split-text p {
    margin-bottom: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.split-text .cta-secondary {
    margin-top: 16px;
}

.split-image {
    border-radius: 12px;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* Program Cards */
.program-cards {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 32px;
}

.program-card {
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.program-header {
    padding: 20px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.program-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
}

.age-badge {
    background-color: rgba(255, 255, 255, 0.25);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

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

.program-details {
    padding: 28px;
}

.program-details > p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 24px;
    line-height: 1.7;
}

.program-details h4 {
    font-size: 1.1rem;
    color: #2d3748;
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

.program-topics,
.program-features {
    list-style: none;
    margin-bottom: 20px;
}

.program-topics li,
.program-features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: #4a5568;
}

.program-topics li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: 700;
    font-size: 1.1rem;
}

.program-features li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #667eea;
    font-weight: 700;
    font-size: 1.2rem;
}

.program-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid #e2e8f0;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 16px;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2b6cb0;
}

.select-service {
    background-color: #667eea;
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.select-service:hover {
    background-color: #5a67d8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Testimonials */
.testimonials {
    background-color: #fff;
}

.testimonials h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: #1a202c;
    font-weight: 700;
}

.testimonial-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testimonial-card {
    background-color: #f7fafc;
    border-left: 4px solid #667eea;
    padding: 28px;
    border-radius: 8px;
}

.testimonial-card p {
    font-size: 1.1rem;
    color: #2d3748;
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    color: #1a202c;
    font-size: 1rem;
}

.testimonial-author span {
    color: #718096;
    font-size: 0.9rem;
}

/* Enrollment Section */
.enrollment-section,
.enrollment-cta {
    padding: 60px 0;
    background-color: #fff;
}

.enrollment-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 40px;
    color: #fff;
}

.enrollment-card h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.enrollment-card > p {
    font-size: 1.1rem;
    margin-bottom: 32px;
    opacity: 0.95;
}

.selected-program {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-weight: 600;
}

.selected-program p {
    margin: 0;
}

.enrollment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.95);
    color: #2d3748;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #fff;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.enrollment-form button[type="submit"] {
    background-color: #fff;
    color: #667eea;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 12px;
    transition: all 0.3s ease;
}

.enrollment-form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Card Grid 2 Column */
.card-grid-2col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* CTA Sections */
.cta-final,
.cta-about,
.contact-cta {
    padding: 60px 0;
    background-color: #f7fafc;
}

.cta-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 48px 32px;
    text-align: center;
    color: #fff;
}

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 28px;
    opacity: 0.95;
}

.cta-box .cta-secondary {
    background-color: #fff;
    color: #667eea;
    border: none;
}

.cta-box .cta-secondary:hover {
    background-color: #f7fafc;
}

.cta-box .cta-primary:hover {
    background-color: #f7fafc;
}

/* Footer */
.footer {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 48px 0 24px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 16px;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section p {
    color: #cbd5e0;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #cbd5e0;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #2d3748;
}

.footer-bottom p {
    color: #a0aec0;
    font-size: 0.9rem;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-cta-btn {
    background-color: #667eea;
    color: #fff;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background-color: #5a67d8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #48bb78;
    color: #fff;
}

.btn-accept:hover {
    background-color: #38a169;
}

.btn-reject {
    background-color: transparent;
    color: #fff;
    border: 2px solid #e2e8f0;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 12px;
    font-weight: 800;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Mission Section */
.mission-section {
    padding: 60px 0;
    background-color: #f7fafc;
}

.mission-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 48px;
    border-radius: 16px;
    text-align: center;
}

.mission-card h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.mission-card p {
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* Approach Section */
.approach-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.approach-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.approach-number {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.approach-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #2d3748;
    font-weight: 600;
}

.approach-card p {
    color: #4a5568;
    line-height: 1.7;
}

/* Team Section */
.team-section {
    background-color: #f7fafc;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.team-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.team-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #667eea;
}

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

.team-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #1a202c;
    font-weight: 600;
}

.team-card .role {
    color: #667eea;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 12px;
    display: block;
}

.team-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* Stats Grid */
.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 8px;
}

.stat-label {
    color: #4a5568;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Contact Page */
.contact-main {
    padding: 60px 0;
    background-color: #fff;
}

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-card {
    background-color: #f7fafc;
    border-radius: 12px;
    padding: 32px;
}

.contact-card h2 {
    font-size: 1.8rem;
    margin-bottom: 24px;
    color: #1a202c;
    font-weight: 700;
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.1rem;
    color: #2d3748;
    margin-bottom: 8px;
    font-weight: 600;
}

.info-content p {
    color: #4a5568;
    line-height: 1.6;
}

.info-content a {
    color: #667eea;
    font-weight: 500;
}

.info-content a:hover {
    text-decoration: underline;
}

.map-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 28px;
    margin-top: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.map-card h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: #2d3748;
    font-weight: 600;
}

.map-placeholder {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
}

.map-placeholder img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.map-note {
    color: #718096;
    font-size: 0.95rem;
    line-height: 1.5;
}

.faq-section h2 {
    font-size: 2rem;
    margin-bottom: 28px;
    color: #1a202c;
    font-weight: 700;
}

.faq-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.faq-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.faq-card h3 {
    font-size: 1.2rem;
    color: #2d3748;
    margin-bottom: 12px;
    font-weight: 600;
}

.faq-card p {
    color: #4a5568;
    line-height: 1.7;
}

/* Thanks Page */
.thanks-main {
    padding: 80px 0;
    background-color: #f7fafc;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thanks-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 48px 32px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #48bb78;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 24px;
    font-weight: 700;
}

.thanks-card h1 {
    font-size: 2.2rem;
    color: #1a202c;
    margin-bottom: 16px;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 32px;
    line-height: 1.6;
}

.selected-service-info {
    background-color: #ebf8ff;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 32px;
    font-weight: 600;
    color: #2c5282;
}

.next-steps {
    margin: 40px 0;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 28px;
    color: #1a202c;
    font-weight: 700;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: left;
}

.step-item {
    background-color: #f7fafc;
    padding: 24px;
    border-radius: 12px;
    display: flex;
    gap: 20px;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-item h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #2d3748;
    font-weight: 600;
}

.step-item p {
    color: #4a5568;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.thanks-contact {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 2px solid #e2e8f0;
}

.thanks-contact p {
    color: #4a5568;
    font-size: 1rem;
}

.thanks-contact a {
    color: #667eea;
    font-weight: 600;
}

.thanks-contact a:hover {
    text-decoration: underline;
}

/* Legal Pages */
.legal-page {
    padding: 60px 0;
    background-color: #fff;
}

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: #1a202c;
    font-weight: 700;
}

.legal-updated {
    color: #718096;
    font-size: 0.95rem;
    margin-bottom: 32px;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2d3748;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #2d3748;
    font-weight: 600;
}

.legal-content p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-content ul li {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-content a {
    color: #667eea;
    font-weight: 500;
}

.legal-content a:hover {
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.cookies-table thead {
    background-color: #667eea;
    color: #fff;
}

.cookies-table th {
    padding: 14px;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.cookies-table td {
    padding: 14px;
    border-bottom: 1px solid #e2e8f0;
    color: #4a5568;
}

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

/* Tablet and Up */
@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        width: auto;
        margin-top: 0;
        gap: 4px;
    }

    .card-hero {
        flex-direction: row;
        align-items: center;
    }

    .hero-content,
    .hero-image {
        flex: 1;
    }

    .hero-image img {
        height: 400px;
    }

    .card-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .info-card,
    .feature-card {
        flex: 1 1 calc(50% - 12px);
        min-width: 250px;
    }

    .card-split {
        flex-direction: row;
        align-items: center;
    }

    .split-text,
    .split-image {
        flex: 1;
    }

    .program-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .program-card {
        flex: 1 1 calc(50% - 16px);
        min-width: 320px;
    }

    .testimonial-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial-card {
        flex: 1 1 calc(50% - 12px);
    }

    .card-grid-2col {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1 1 calc(50% - 12px);
    }

    .form-row {
        flex-direction: row;
    }

    .form-row .form-group {
        flex: 1;
    }

    .approach-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .approach-card {
        flex: 1 1 calc(50% - 14px);
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-card {
        flex: 1 1 calc(50% - 14px);
    }

    .stats-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-card {
        flex: 1 1 calc(50% - 12px);
    }

    .contact-layout {
        flex-direction: row;
        gap: 32px;
    }

    .contact-info-section,
    .faq-section {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .steps-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .step-item {
        flex: 1 1 calc(50% - 12px);
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.25rem;
    }

    .card-grid .info-card,
    .card-grid .feature-card {
        flex: 1 1 calc(33.333% - 16px);
    }

    .program-card {
        flex: 1 1 calc(33.333% - 22px);
    }

    .testimonial-card {
        flex: 1 1 calc(33.333% - 16px);
    }

    .approach-card {
        flex: 1 1 calc(50% - 14px);
    }

    .team-card {
        flex: 1 1 calc(33.333% - 19px);
    }

    .stat-card {
        flex: 1 1 calc(25% - 18px);
    }

    .step-item {
        flex: 1 1 calc(33.333% - 16px);
    }
}