/* ================================================
   Lumière French Online School - Main Stylesheet
   ================================================ */

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

:root {
    /* Color Palette */
    --primary-blue: #2563eb;
    --primary-green: #22c55e;
    --dark-green: #16a34a;
    --dark-blue: #1e40af;
    --light-blue: #dbeafe;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --disclaimer-bg: #8b4545;
    
    /* Typography */
    --font-body: 'Poppins', sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Spacing */
    --max-width: 1200px;
    --section-padding: 80px 20px;
}

body {
    font-family: var(--font-body);
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

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

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

ul {
    list-style: none;
}

/* ================================================
   Disclaimer Banner
   ================================================ */
.disclaimer-banner {
    background-color: var(--disclaimer-bg);
    color: var(--white);
    padding: 12px 20px;
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
}

.disclaimer-content {
    max-width: var(--max-width);
    margin: 0 auto;
}

.disclaimer-content strong {
    font-weight: var(--font-weight-semibold);
}

/* ================================================
   Header & Navigation
   ================================================ */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-blue);
}

.logo i {
    font-size: 28px;
}

.nav-menu ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    font-weight: var(--font-weight-normal);
    color: var(--gray-800);
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-blue);
    background-color: var(--light-blue);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--gray-800);
    cursor: pointer;
}

/* ================================================
   Hero Section
   ================================================ */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.85) 0%, rgba(34, 197, 94, 0.75) 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    padding: 100px 20px;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 56px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 15px;
    color: var(--white);
}

.hero-subtitle {
    font-size: 28px;
    font-weight: var(--font-weight-light);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 18px;
    font-weight: var(--font-weight-light);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ================================================
   Buttons
   ================================================ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: var(--font-weight-semibold);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
}

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

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

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

/* ================================================
   Sections
   ================================================ */
.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--gray-900);
}

/* ================================================
   Features Section
   ================================================ */
.features {
    padding: var(--section-padding);
    background-color: var(--gray-50);
}

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

.feature-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 36px;
    color: var(--white);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--gray-900);
}

.feature-card p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ================================================
   About Intro Section
   ================================================ */
.about-intro {
    padding: var(--section-padding);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro-image img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-intro-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
}

.about-intro-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--gray-600);
    line-height: 1.8;
}

.about-intro-content .btn {
    margin-top: 15px;
}

/* ================================================
   Testimonials Section
   ================================================ */
.testimonials {
    padding: var(--section-padding);
    background-color: var(--gray-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-stars {
    color: #fbbf24;
    margin-bottom: 15px;
    font-size: 18px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: var(--gray-900);
    font-size: 16px;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--gray-600);
    font-size: 14px;
}

/* ================================================
   Statistics Section
   ================================================ */
.statistics {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-icon i {
    font-size: 48px;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 48px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    font-weight: var(--font-weight-light);
}

/* ================================================
   CTA Section
   ================================================ */
.cta {
    padding: var(--section-padding);
    background-color: var(--light-blue);
}

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

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 30px;
}

/* ================================================
   Footer
   ================================================ */
.footer {
    background-color: var(--gray-900);
    color: var(--white);
    padding: 60px 20px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 15px;
}

.footer-logo i {
    font-size: 28px;
}

.footer-tagline {
    font-size: 14px;
    font-weight: var(--font-weight-light);
    margin-bottom: 20px;
    color: var(--gray-200);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary-green);
    transform: translateY(-3px);
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    color: var(--gray-200);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-green);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--gray-200);
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact i {
    margin-top: 3px;
    color: var(--primary-green);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-200);
    font-size: 14px;
}

/* ================================================
   Cookie Banner
   ================================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--gray-900);
    color: var(--white);
    padding: 20px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-banner.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

.cookie-content .btn {
    padding: 10px 24px;
    font-size: 14px;
}

/* ================================================
   Responsive Design
   ================================================ */

/* Tablet - 2 columns */
@media (max-width: 992px) {
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 22px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile - 1 column */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--white);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        padding: 20px;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-menu a {
        display: block;
        padding: 15px;
        border-bottom: 1px solid var(--gray-200);
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .features-grid,
    .testimonials-grid,
    .statistics-grid {
        grid-template-columns: 1fr;
    }
    
    .about-intro-content h2 {
        font-size: 28px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content .btn {
        width: 100%;
    }
    
    .disclaimer-banner {
        font-size: 11px;
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .logo span {
        font-size: 16px;
    }
    
    .hero-container {
        padding: 60px 20px;
    }
    
    .hero-title {
        font-size: 26px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 16px;
    }
}

/* ================================================
   Additional Page Styles
   ================================================ */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    color: var(--white);
    padding: 80px 20px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--white);
}

.page-header p {
    font-size: 20px;
    font-weight: var(--font-weight-light);
}

/* Our Story Section */
.our-story {
    padding: var(--section-padding);
}

/* Mission & Values */
.mission-values {
    padding: var(--section-padding);
    background-color: var(--gray-50);
}

/* Teaching Method */
.teaching-method {
    padding: var(--section-padding);
}

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

.method-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.method-number {
    font-size: 48px;
    font-weight: var(--font-weight-bold);
    color: var(--primary-green);
    min-width: 80px;
}

.method-details h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.method-details p {
    color: var(--gray-600);
    line-height: 1.8;
}

/* Our Team */
.our-team {
    padding: var(--section-padding);
    background-color: var(--gray-50);
}

.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--gray-600);
    font-size: 18px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: var(--white);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
}

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

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

.team-member h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.team-role {
    color: var(--primary-blue);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 15px;
}

.team-bio {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.6;
}

/* Why Choose Us */
.why-choose-us {
    padding: var(--section-padding);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-item i {
    font-size: 32px;
    color: var(--primary-green);
    flex-shrink: 0;
}

.why-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.why-item p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* Resources/Courses Page */
.courses-intro {
    padding: 60px 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.courses-intro p {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.8;
}

.course-section {
    padding: 60px 20px;
}

.course-section:nth-child(even) {
    background-color: var(--gray-50);
}

.course-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.course-content.reverse {
    direction: rtl;
}

.course-content.reverse > * {
    direction: ltr;
}

.course-image img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.course-details h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.course-details p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 15px;
}

.course-features {
    margin: 25px 0;
}

.course-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
}

.course-features i {
    color: var(--primary-green);
}

/* Blog Page */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding: var(--section-padding);
}

.blog-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.blog-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--gray-600);
}

.blog-meta i {
    margin-right: 5px;
    color: var(--primary-blue);
}

.blog-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.blog-content h3 a {
    color: var(--gray-900);
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: var(--primary-blue);
}

.blog-excerpt {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Blog Article Page */
.article-header {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px 40px;
}

.article-header h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    gap: 30px;
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 30px;
}

.article-featured-image {
    max-width: 1000px;
    margin: 0 auto 60px;
    border-radius: 12px;
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    height: auto;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.article-content h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.article-content h3 {
    font-size: 26px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.article-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.article-content ul, .article-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-content li {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 10px;
    list-style: disc;
}

.related-articles {
    padding: var(--section-padding);
    background-color: var(--gray-50);
}

/* Contact Page */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: var(--section-padding);
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 8px;
    color: var(--gray-900);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

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

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-item i {
    font-size: 24px;
    color: var(--primary-green);
    width: 40px;
    flex-shrink: 0;
}

.contact-info-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.contact-info-item p {
    color: var(--gray-600);
    line-height: 1.7;
}

.map-container {
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: none;
}

/* FAQ Page */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--section-padding);
}

.faq-item {
    background-color: var(--white);
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 25px 30px;
    font-size: 18px;
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--gray-50);
}

.faq-question i {
    font-size: 20px;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 30px 25px;
    color: var(--gray-600);
    line-height: 1.8;
}

/* Privacy & Terms Pages */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--section-padding);
}

.legal-content h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 10px;
    list-style: disc;
}

/* Responsive for Additional Pages */
@media (max-width: 992px) {
    .course-content {
        grid-template-columns: 1fr;
    }
    
    .course-content.reverse {
        direction: ltr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px;
    }
    
    .page-header p {
        font-size: 16px;
    }
    
    .method-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .method-number {
        font-size: 36px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .article-header h1 {
        font-size: 32px;
    }
    
    .article-content p,
    .article-content li {
        font-size: 16px;
    }
}