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

:root {
    --primary-color: #6a7870;
    --secondary-color: #4ECDC4;
    --accent-color: #F97316;
    --text-dark: #2D3748;
    --text-light: #718096;
    --background-light: #F7FAFC;
    --white: #FFFFFF;
    --border-color: #E2E8F0;
    --gradient-primary: linear-gradient(135deg, #6a7870 0%, #7a8a82 100%);
    --gradient-secondary: linear-gradient(135deg, #4ECDC4 0%, #44D9E8 100%);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

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

/* Header Styles */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 1.5rem 0;
    gap: 2rem;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-center {
    justify-self: center;
}

.logo-image {
    height: 120px;
    width: auto;
    max-width: 450px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.navigation-left {
    justify-self: start;
}

.navigation-right {
    justify-self: end;
}

.nav-menu-left {
    justify-content: flex-start;
}

.nav-menu-right {
    justify-content: flex-end;
}

.nav-menu a {
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}


/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 100%);
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}


.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Buttons */
.btn {
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(106, 120, 112, 0.3);
}

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

.hero-actions .btn-primary {
    color: var(--white) !important;
}

.hero-actions .btn-primary i {
    color: var(--white) !important;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(106, 120, 112, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

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

.hero-actions {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}

.hero-actions p {
    margin: 0;
    font-size: 1rem;
    white-space: nowrap;
}

.hero-actions a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}


/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    text-align: center;
}

.footer p {
    color: #A0AEC0;
    margin: 0;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    padding-top: 0;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--white);
    z-index: 1001;
}

.mobile-menu-logo {
    display: inline-block;
}

.mobile-logo-image {
    height: 50px;
    max-width: 200px;
    object-fit: contain;
}


.mobile-nav-menu {
    list-style: none;
    padding: 6rem 0 2rem 0;
    margin: 0;
}

.mobile-nav-menu li {
    padding: 0;
}

.mobile-nav-menu a {
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: block;
    padding: 1.2rem 2rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-menu a:hover {
    background: var(--background-light);
    color: var(--primary-color);
    padding-left: 2.5rem;
}

/* Header scroll effect */
.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Page Hero Styles */
.page-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/bg.png') center/cover no-repeat;
    color: var(--white);
    padding-top: 100px;
    text-align: center;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
}

.page-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.page-hero-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb-separator {
    color: var(--white);
    opacity: 0.6;
}

.breadcrumb-current {
    color: var(--white);
    font-weight: 500;
}

/* About Content Styles */
.about-content {
    padding: 4rem 0;
    background: var(--white);
}

.about-text-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    line-height: 1.8;
    text-align: center;
}

.about-text .greeting {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 100%;
}

.about-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

.about-list {
    margin: 2rem auto;
    padding: 0;
    list-style: none;
    max-width: 500px;
    text-align: center;
}

.about-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    color: var(--text-gray);
    position: relative;
    font-size: 1.1rem;
    border-bottom: 1px solid #f0f0f0;
}

.about-list li:last-child {
    border-bottom: none;
}

.about-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.about-text .signature {
    margin-top: 3rem;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-style: italic;
    text-align: center;
}


/* Footer Styles */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #A0AEC0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.contact-info p {
    color: #A0AEC0;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-align: left;
}

.contact-info i {
    color: var(--secondary-color);
    width: 16px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

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

.social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

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

.footer-credit {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-credit a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: var(--white);
}

.footer-logo {
    margin-bottom: 1rem;
    text-align: center;
}

.footer-logo .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--white);
    font-size: 2rem;
    font-weight: bold;
    text-decoration: none;
}

.footer-logo .logo-image {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-logo p {
    color: #A0AEC0;
    margin-top: 0;
    line-height: 1.6;
    text-align: center;
}

/* Active navigation state */
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        min-height: 70px;
    }
    
    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0;
        position: relative;
        min-height: 70px;
    }
    
    .navigation {
        display: none !important;
    }
    
    .nav-menu {
        display: none !important;
    }
    
    .logo-center {
        position: absolute;
        left: 1rem;
        transform: none;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
        width: 40px;
        height: 40px;
    }
    
    .logo-image {
        height: 45px;
        max-width: 200px;
    }
    
    /* Page Hero Mobile Styles */
    .page-hero {
        min-height: 40vh;
        padding-top: 80px;
        padding-bottom: 2rem;
    }
    
    .page-hero-content h2 {
        font-size: 2.2rem;
    }
    
    .breadcrumb {
        flex-wrap: wrap;
        font-size: 0.9rem;
    }
    
    /* About Content Mobile Styles */
    .about-content {
        padding: 4rem 0;
    }
    
    .about-text {
        padding: 0 1rem;
    }
    
    .about-text .greeting {
        font-size: 1.2rem;
    }
    
    .about-text p {
        font-size: 1rem;
        text-align: center;
    }
    
    .about-list li {
        font-size: 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        max-width: 280px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

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

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s ease forwards;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    font-family: 'Plus Jakarta Sans', sans-serif;
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--white);
}

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

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.field-error {
    display: block;
    color: #e53e3e;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    margin-left: 0.25rem;
}

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

/* Loading states */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.rounded { border-radius: 10px; }
.rounded-full { border-radius: 50px; }

.shadow-sm { box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); }
.shadow { box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1); }

/* Index Page Specific Styles */
.hero-text h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

.hero-main-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    aspect-ratio: 1;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Floating Decorative Shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.floating-shape {
    position: absolute;
    opacity: 0.9;
    transition: transform 0.3s ease-out;
    animation: floatUpDown 6s ease-in-out infinite;
    display: block;
}

.shape-02 {
    bottom: 10%;
    right: calc(35% - 250px);
    width: 80px;
    height: auto;
    animation-delay: 0s;
    z-index: -1;
}

.shape-07 {
    bottom: 10%;
    right: 35%;
    width: 80px;
    height: auto;
    animation-delay: 2s;
    z-index: -1;
}

.shape-08 {
    bottom: calc(10% + 460px);
    right: 35%;
    width: 80px;
    height: auto;
    animation-delay: 4s;
    z-index: -1;
}

@keyframes floatUpDown {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    33% { 
        transform: translateY(-15px) rotate(2deg); 
    }
    66% { 
        transform: translateY(10px) rotate(-2deg); 
    }
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: #f3f6f9;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: #f3f6f9;
}

/* About Page Content - Different from homepage about section */
.about-page-content {
    padding: 4rem 0;
    background: var(--white);
}

.about-text-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
}

/* Features section background only on about page */
.about-page-content ~ .features-preview {
    background: #f6f9fb;
}

/* Features section background for other pages */
.services-page-content ~ .features-preview,
.parents-page-content ~ .features-preview,
.schools-page-content ~ .features-preview,
.resources-page-content ~ .features-preview,
.testimonials-page-content ~ .features-preview,
.contact-page-content ~ .features-preview {
    background: #f6f8fb;
}

/* Other page content sections */
.services-page-content,
.parents-page-content,
.schools-page-content,
.resources-page-content,
.testimonials-page-content,
.contact-page-content {
    padding: 4rem 0;
    background: var(--white);
}

.services-text-wrapper,
.parents-text-wrapper,
.schools-text-wrapper,
.resources-text-wrapper,
.testimonials-text-wrapper,
.contact-text-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
}

.services-text h2,
.parents-text h2,
.schools-text h2,
.resources-text h2,
.testimonials-text h2,
.contact-text h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.services-text p,
.parents-text p,
.schools-text p,
.resources-text p,
.testimonials-text p,
.contact-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Services List Section */
.services-list {
    padding: 4rem 0;
    background: var(--white);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 3rem 0;
}

/* Service Left - Text Left, Image Right */
.service-left .service-content {
    grid-template-areas: "text image";
}

.service-left .service-text {
    grid-area: text;
}

.service-left .service-image {
    grid-area: image;
}

/* Service Right - Image Left, Text Right */
.service-right .service-content {
    grid-template-areas: "image text";
}

.service-right .service-text {
    grid-area: text;
}

.service-right .service-image {
    grid-area: image;
}

.service-text {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.service-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.service-text h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 600;
}

.service-text ul {
    list-style: none;
    padding: 0;
}

.service-text li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.service-text li::before {
    content: "•";
    color: var(--primary-color);
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.service-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background: #f8f9fa;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.step-item h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose {
    padding: 6rem 0;
    background: var(--white);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-item {
    text-align: center;
    padding: 2rem;
}

.why-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.why-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.why-item h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.why-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .services-grid,
    .steps-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-content {
        grid-template-columns: 1fr !important;
        grid-template-areas: "text" "image" !important;
        gap: 2rem;
        padding: 2rem 0;
    }
    
    .service-text {
        padding: 2rem;
    }
    
    .step-item {
        padding: 1.5rem;
    }
}

/* Parents Support Section */
.parents-support {
    padding: 4rem 0;
    background: var(--white);
}

.parents-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.support-item {
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
}

.support-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 3rem 0;
}

/* Support Left - Text Left, Image Right */
.support-left .support-content {
    grid-template-areas: "text image";
}

.support-left .support-text {
    grid-area: text;
}

.support-left .support-image {
    grid-area: image;
}

/* Support Right - Image Left, Text Right */
.support-right .support-content {
    grid-template-areas: "image text";
}

.support-right .support-text {
    grid-area: text;
}

.support-right .support-image {
    grid-area: image;
}

.support-text {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.support-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.support-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.support-text h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 600;
}

.support-text ul {
    list-style: none;
    padding: 0;
}

.support-text li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.support-text li::before {
    content: "•";
    color: var(--primary-color);
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.support-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Parents Gain Section */
.parents-gain {
    padding: 6rem 0;
    background: #f8f9fa;
}

.gain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gain-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gain-item:hover {
    transform: translateY(-5px);
}

.gain-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.gain-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.gain-item h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.gain-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Mobile Responsive for Parents */
@media (max-width: 768px) {
    .support-content {
        grid-template-columns: 1fr !important;
        grid-template-areas: "text" "image" !important;
        gap: 2rem;
        padding: 2rem 0;
    }
    
    .support-text {
        padding: 2rem;
    }
    
    .gain-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Schools Support Section */
.schools-support {
    padding: 4rem 0;
    background: var(--white);
}

.schools-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.school-support-item {
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
}

.school-support-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 3rem 0;
}

/* School Support Left - Text Left, Image Right */
.school-support-item.support-left .school-support-content {
    grid-template-areas: "text image";
}

.school-support-item.support-left .school-support-text {
    grid-area: text;
}

.school-support-item.support-left .school-support-image {
    grid-area: image;
}

/* School Support Right - Image Left, Text Right */
.school-support-item.support-right .school-support-content {
    grid-template-areas: "image text";
}

.school-support-item.support-right .school-support-text {
    grid-area: text;
}

.school-support-item.support-right .school-support-image {
    grid-area: image;
}

.school-support-text {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.school-support-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.school-support-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.school-support-text h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 600;
}

.school-support-text ul {
    list-style: none;
    padding: 0;
}

.school-support-text li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.school-support-text li::before {
    content: "•";
    color: var(--primary-color);
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.school-support-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.school-support-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Schools Why Section */
.schools-why {
    padding: 6rem 0;
    background: #f8f9fa;
}

.schools-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.schools-why-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.schools-why-item:hover {
    transform: translateY(-5px);
}

.schools-why-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.schools-why-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.schools-why-item h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.schools-why-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Mobile Responsive for Schools */
@media (max-width: 768px) {
    .school-support-content {
        grid-template-columns: 1fr !important;
        grid-template-areas: "text" "image" !important;
        gap: 2rem;
        padding: 2rem 0;
    }
    
    .school-support-text {
        padding: 2rem;
    }
    
    .schools-why-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Blog Articles Section */
.blog-articles {
    padding: 4rem 0;
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

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

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

.blog-image {
    position: relative;
    height: 200px;
    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.05);
}

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.blog-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.blog-content .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    padding: 0.7rem 1.5rem;
}

/* Mobile Responsive for Blog */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .blog-content h3 {
        font-size: 1.2rem;
    }
}

/* Testimonials Page Specific Styles */
.testimonials-emoji {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

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

.testimonials-text h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Testimonials Grid Section */
.testimonials-grid-section {
    padding: 4rem 0 6rem;
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    align-items: start;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border-left: 4px solid var(--primary-color);
}

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

/* Different colors for different testimonial types */
.parent-testimonial {
    border-left-color: #e74c3c;
}

.educator-testimonial {
    border-left-color: #3498db;
}

.school-testimonial {
    border-left-color: #2ecc71;
}

.testimonial-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.testimonial-type {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.parent-testimonial .testimonial-type {
    color: #e74c3c;
}

.educator-testimonial .testimonial-type {
    color: #3498db;
}

.school-testimonial .testimonial-type {
    color: #2ecc71;
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin: 0;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    position: absolute;
    top: -1rem;
    left: -1rem;
    opacity: 0.3;
    font-family: serif;
}

.testimonial-author {
    font-size: 1rem;
    color: var(--text-light);
    text-align: right;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.testimonial-author strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Clean grid layout for larger screens */
@media (min-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        align-items: start;
    }
}

/* Mobile Responsive for Testimonials */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonials-emoji {
        font-size: 2.5rem;
    }
    
    .testimonials-text h2 {
        font-size: 2rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    .testimonial-content p::before {
        font-size: 3rem;
        top: -0.5rem;
        left: -0.5rem;
    }
}

/* Contact Form & Info Section */
.contact-main-section {
    padding: 4rem 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Contact Form */
.contact-form-wrapper {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.contact-form-header h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-form-header p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form .form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-family);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: var(--white);
}

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

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

.contact-form .btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

/* Contact Information */
.contact-info-wrapper {
    padding: 2rem 0;
}

.contact-info-header h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-info-header p {
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.contact-info-items {
    margin-bottom: 3rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-2px);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 1.2rem;
    color: var(--white);
}

.contact-info-content h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-info-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: var(--text-dark);
}

.contact-info-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* Contact Social */
.contact-social {
    padding-top: 2rem;
    border-top: 1px solid #e1e5e9;
}

.contact-social h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-social .social-links {
    display: flex;
    gap: 1rem;
}

.contact-social .social-link {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.contact-social .social-link:hover {
    transform: translateY(-3px);
    background-color: var(--text-dark);
}

.contact-social .social-link i {
    font-size: 1.1rem;
}

/* Mobile Responsive for Contact */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info-item {
        padding: 1rem;
    }
    
    .contact-social .social-links {
        justify-content: center;
    }
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-main-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
    background: transparent;
}

.about-main-image:hover {
    transform: translateY(-10px);
}

/* About Section Mobile Responsiveness */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .about-main-image {
        max-width: 400px;
    }
}

/* Approach Section */
.approach-section {
    padding: 6rem 0;
    background: var(--white);
    text-align: center;
}

.approach-section .section-header {
    margin-bottom: 3rem;
}

.approach-section .section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.approach-section .section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.approach-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.approach-main-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
    background: transparent;
}

.approach-main-image:hover {
    transform: translateY(-10px);
}

/* Approach Section Mobile Responsiveness */
@media (max-width: 768px) {
    .approach-section .section-header h2 {
        font-size: 2rem;
    }
    
    .approach-main-image {
        max-width: 500px;
    }
}

/* Features Preview */
.features-preview {
    padding: 5rem 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.feature-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    line-height: 1.3;
}

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

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

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

/* Index Page Mobile Responsiveness */
@media (max-width: 768px) {
    .floating-shapes {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-main-image {
        max-width: 350px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}
