* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
      :root {
            --primary-teal: #3d7b7b;
            --dark-teal: #2d5d5d;
            --light-teal: #e8f4f4;
            --accent-teal: #4a9999;
            --dark-bg: #2c3e50;
            --text-dark: #333;
            --text-light: #666;
            --white: #fff;
		    --success-green: #27ae60;
            --error-red: #e74c3c;
        }  
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            color: #2c3e50;
            line-height: 1.6;
        }
        
        /* Header */
        header {
            background: white;
            padding: 1rem 2rem;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0rem 5%;
        }
.cta-button {
            display: inline-block;
            background: var(--white);
            color: var(--primary-teal);
            padding: 1rem 2rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        nav, .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
      
        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #2c7873;text-decoration: none;
        }
        
        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
            list-style: none;
        }
        
        .nav-links a {
            text-decoration: none;
            color: #2c3e50;
            font-weight: 500;
        }
        
        .nav-links a:hover {
            color: #3d7872;
        }
        
        .btn-primary {
            background: #3d7872;
            color: white !important;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
		.btn-primary a {color: white !important;}
        .btn-primary:hover {
            background: #2d5852;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(61, 120, 114, 0.3);
        }
        
        .btn-secondary {
            background: white;
            color: #3d7872;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s;
            border: 2px solid #3d7872;
        }
        
        .btn-secondary:hover {
            background: #3d7872;
            color: white;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #3d7872 0%, #4a8d86 100%);
            color: white;
            padding: 4rem 2rem;
            text-align: center;
        }
        
        .hero-content {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .location-badge {
            background: rgba(255, 255, 255, 0.2);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            display: inline-block;
            margin-bottom: 2rem;
            font-size: 1rem;
            font-weight: 500;
        }
        
        .location-badge::before {
            content: "📍 ";
        }
        .hero .location {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            line-height: 1.8;
            opacity: 0.95;
        }
        .hero .subtitle {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.hero .trust-line {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}
        .cta-wrapper {
            margin-top: 2rem;
        }
        
        .cta-subtext {
            margin-top: 0.75rem;
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        /* Sections */
        section {
            padding: 4rem 2rem;
        }
        
        .section-light {
            background: #f8f9fa;
        }
        
        .section-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            color: #2c3e50;
        }
        
        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 3rem;
        }
        
        /* About Section */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 3rem;
            align-items: start;
        }
        
        .photo-placeholder {
            width: 100%;
            aspect-ratio: 1;
            background: linear-gradient(135deg, #e8f4f3 0%, #d4e9e7 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: #3d7872;
            border: 4px solid #3d7872;
            max-width: 300px;
            margin: 0 auto;
        }
        
        .bio-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: #2c3e50;
        }
        
        .bio-content p {
            font-size: 1.1rem;
            margin-bottom: 1.25rem;
            line-height: 1.8;
            color: #4a5568;
        }
        
        .bio-content .highlight {
            font-weight: 600;
            color: #3d7872;
            font-size: 1.2rem;
        }
        
        .credentials {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .credential-item {
            text-align: center;
            padding: 1rem;
        }
        
        .credential-item .checkmark {
            font-size: 2rem;
            color: #3d7872;
            margin-bottom: 0.5rem;
        }
        
        .credential-item h4 {
            color: #3d7872;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }
        
        /* Service Cards */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 4px 16px rgba(0,0,0,0.15);
        }
        
        .service-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .service-card h3 {
            color: #3d7872;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .service-card p {
            color: #4a5568;
            line-height: 1.7;margin-bottom: 1rem;
        }
        
        /* Video Resources */
        .resources-grid,.pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .video-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }
        
        .video-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 4px 16px rgba(0,0,0,0.15);
        }
        
        .video-thumbnail {
            background: linear-gradient(135deg, #3d7872 0%, #4a8d86 100%);
            aspect-ratio: 16/9;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
        }
        
        .video-content {
            padding: 1.5rem;
        }
        
        .video-content h4 {
            color: #2c3e50;
            margin-bottom: 0.75rem;
            font-size: 1.25rem;
        }
        
        .video-content p {
            color: #666;
            font-size: 0.95rem;
        }
        
        /* Testimonials */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        
        .testimonial-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            position: relative;
        }
        
        .testimonial-placeholder-note {
            background: #fef3c7;
            border: 2px dashed #f59e0b;
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            font-style: italic;
            color: #92400e;
            margin-bottom: 1rem;
        }
        
        .quote {
            font-size: 3rem;
            color: #3d7872;
            opacity: 0.3;
            line-height: 0;
            margin-bottom: 0.5rem;
        }
        
        .testimonial-text {
            font-style: italic;
            color: #4a5568;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 0.25rem;
        }
        
        .testimonial-location {
            color: #666;
            font-size: 0.9rem;
        }
        .testimonial-highlight {
    background: var(--light-teal);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 5px solid var(--primary-teal);
}
        /* Blog Preview */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        
        .blog-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }
        
        .blog-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 4px 16px rgba(0,0,0,0.15);
        }
        
        .blog-image {
            background: linear-gradient(135deg, #3d7872 0%, #4a8d86 100%);
            aspect-ratio: 16/9;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
        }
        
        .blog-content {
            padding: 1.5rem;
        }
        
        .blog-content h4 {
            color: #2c3e50;
            margin-bottom: 0.75rem;
            font-size: 1.25rem;
        }
        
        .blog-content p {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 1rem;
            line-height: 1.6;
        }
        
        .blog-link,.read-link {
            color: #3d7872;
            font-weight: 600;
            text-decoration: none;
        }
        
        .blog-link:hover,.read-link:hover {
            text-decoration: underline;
        }
        /* Subjects Grid */
        .subjects-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .subject-card {
            background: white;
            padding: 2rem 1.5rem;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }
        
        .subject-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 4px 16px rgba(0,0,0,0.15);
        }
        
        .subject-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .subject-card h3 {
            color: #3d7872;
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
        }
        
        .subject-card p {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.6;
        }
        
        /* Grade Levels */
        .grade-levels {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin: 2rem 0;
            flex-wrap: wrap;
        }
        
        .grade-badge {
            background: white;
            border: 2px solid #3d7872;
            color: #3d7872;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
        }
        
        .location-note {
            text-align: center;
            color: #666;
            font-size: 1.05rem;
            margin-top: 2rem;
        }
        
        /* Who Benefits */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        
        .benefit-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            border-left: 4px solid #3d7872;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        .benefit-card h3 {
            color: #3d7872;
            font-size: 1.3rem;
            margin-bottom: 0.75rem;
        }
        
        .benefit-card p {
            color: #4a5568;
            line-height: 1.7;
        }
        
        /* Philosophy Box */
        .philosophy-box {
            background: linear-gradient(135deg, #3d7872 0%, #4a8d86 100%);
            color: white;
            padding: 3rem;
            border-radius: 12px;
            margin: 3rem 0;
        }
        
        .philosophy-box h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }
        
        .philosophy-box h3::before {
            content: "🌳 ";
        }
        
        .philosophy-box p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1rem;
            opacity: 0.95;
        }
        
        /* What Makes Different - 2 Column */
        .difference-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }
        
        .difference-item {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            border-left: 4px solid #3d7872;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        
        .difference-item h3 {
            color: #3d7872;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }
        
        .difference-item p {
            color: #4a5568;
            line-height: 1.6;
        }
/* What's Included - 2 Column with Icons */
        .included-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }
        
        .included-item {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            display: flex;
            gap: 1rem;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        
        .included-icon {
            font-size: 2rem;
            flex-shrink: 0;
        }
        
        .included-content h3 {
            color: #3d7872;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }
        
        .included-content p {
            color: #4a5568;
            line-height: 1.6;
        }
        
        /* Pricing */
        .pricing-card {
            background: white;
            max-width: 600px;
            margin: 0 auto;
            padding: 3rem;
            border-radius: 12px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.1);
            text-align: center;
        }
        
        .pricing-card h3 {
            color: #2c3e50;
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        
        .price {
            font-size: 3.5rem;
            color: #3d7872;
            font-weight: 700;
            margin: 1rem 0;
        }
        
        .price-period {
            font-size: 1.5rem;
            color: #666;
            font-weight: 400;
        }
        
        .pricing-details {
            color: #666;
            margin: 1.5rem 0;
            font-size: 1.1rem;
        }
        
        .package-title {
            font-weight: 600;
            color: #2c3e50;
            margin-top: 2rem;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        
        .package-list {
            text-align: left;
            margin: 1rem 0;
        }
        
        .package-item {
            padding: 0.75rem 0;
            color: #4a5568;
            font-size: 1.05rem;
        }
        
        .package-note {
            font-style: italic;
            color: #666;
            margin-top: 1.5rem;
            line-height: 1.7;
        }
        
        .urgency-note {
            background: #fef3c7;
            color: #92400e;
            padding: 1rem;
            border-radius: 8px;
            margin-top: 2rem;
            font-weight: 500;
        }
        
        /* FAQ Accordion */
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: white;
            margin-bottom: 1rem;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            overflow: hidden;
        }
        
        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: #3d7872;
            font-size: 1.1rem;
            transition: background 0.3s;
        }
        
        .faq-question:hover {
            background: #f8f9fa;
        }
        
        .faq-toggle {
            font-size: 1.5rem;
            color: #3d7872;
            transition: transform 0.3s;
        }
        
        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .faq-answer-content {
            padding: 0 1.5rem 1.5rem 1.5rem;
            color: #4a5568;
            line-height: 1.8;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
        }
.intro-text {
            max-width: 900px;
            margin: 0 auto 2rem;
            font-size: 1.1rem;
            line-height: 1.8;
            color: #4a5568;
        }
        
        .intro-text .highlight {
            font-weight: 600;
            color: #3d7872;
            font-style: italic;
        }
        
        /* Is This Right - 2 Column */
        .right-for-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }
        
        .right-for-item {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            border-left: 4px solid #3d7872;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        
        .right-for-item h3 {
            color: #3d7872;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }
        
        .right-for-item p {
            color: #4a5568;
            line-height: 1.6;
        }
        
        /* Comparison Box */
        .comparison-container {
            background: white;
            padding: 3rem;
            border-radius: 12px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.1);
            margin: 2rem 0;
        }
        
        .comparison-title {
            font-size: 1.5rem;
            color: #3d7872;
            margin-bottom: 2rem;
            text-align: center;
        }
        
        .comparison-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        
        .comparison-item {
            text-align: center;
            padding: 1.5rem;
            border-radius: 8px;
            background: #f8f9fa;
        }
        
        .comparison-item h4 {
            color: #2c3e50;
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }
        
        .comparison-item h4::before {
            font-size: 2rem;
            display: block;
            margin-bottom: 0.5rem;
        }
        
        .comparison-item.tutoring h4::before {
            content: "📚";
        }
        
        .comparison-item.coaching h4::before {
            content: "🎯";
        }
        
        .comparison-item.adhd h4::before {
            content: "🧠";
        }
        
        .comparison-detail {
            margin-bottom: 0.75rem;
        }
        
        .comparison-label {
            font-weight: 600;
            color: #3d7872;
            display: block;
            margin-bottom: 0.25rem;
        }
        
        .comparison-text {
            color: #4a5568;
            font-size: 0.95rem;
        }
        
        .comparison-note {
            text-align: center;
            margin-top: 2rem;
            color: #666;
            font-style: italic;
        }
/* What You'll Gain - 3 Column */
        .gain-section {
            margin-bottom: 3rem;
        }
        
        .gain-section h3 {
            font-size: 1.8rem;
            color: #3d7872;
            margin-bottom: 1.5rem;
            text-align: center;
        }
        
        .gain-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .gain-item {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            text-align: center;
        }
        
        .gain-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .gain-item h4 {
            color: #3d7872;
            font-size: 1.15rem;
            margin-bottom: 0.5rem;
        }
        
        .gain-item p {
            color: #4a5568;
            line-height: 1.6;
            font-size: 0.95rem;
        }


/* Signs Section */
        .signs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .sign-card {
            background: var(--white);
            border-left: 4px solid var(--primary-teal);
            padding: 1.5rem;
            border-radius: 5px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            transition: transform 0.3s;
        }
        
        .sign-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.12);
        }
        
        .sign-card .icon {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }
        
        .sign-card h3 {
            color: var(--primary-teal);
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }
        
        .sign-card p {
            color: var(--text-light);
            line-height: 1.6;
        }
/* Trust Section */
        .trust-section {
            background: var(--white);
            padding: 3rem;
            border-radius: 10px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 3rem;
            align-items: center;
        }
        
        .trust-image {
            text-align: center;
        }
        
        .trust-image img {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid var(--primary-teal);
        }
        
        .trust-content h3 {
            color: var(--primary-teal);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
.credentials-ef {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}
.credential-badge {
    background: var(--light-teal);
    color: var(--primary-teal);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}
section.section {
	padding:0px;
    margin-bottom: 4rem;
}
section.section h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}
/* Support Section */
        .support-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: var(--text-light);
            font-size: 1.1rem;
            line-height: 1.8;
        }
/* What's Included Section */
        .included-grid-ef {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .included-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            border-top: 4px solid var(--primary-teal);
        }
        
        .included-card .icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .included-card h3 {
            color: var(--primary-teal);
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }
        
        .included-card p {
            color: var(--text-light);
            line-height: 1.7;
        }
        
        /* Results Section */
        .results-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .result-card {
            background: var(--light-teal);
            padding: 2rem;
            border-radius: 10px;
            border-left: 5px solid var(--primary-teal);
        }
        
        .result-card .icon {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }
        
        .result-card h3 {
            color: var(--primary-teal);
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }
        
        .result-card p {
            color: var(--text-dark);
            line-height: 1.7;
        }
        
        .timeline-note {
            text-align: center;
            color: var(--text-light);
            font-style: italic;
            margin-top: 2rem;
            font-size: 1.05rem;
        }
/* Our Approach Section */
        .approach-section {
            background: linear-gradient(135deg, var(--primary-teal) 0%, var(--accent-teal) 100%);
            color: var(--white);
            padding: 4rem 5%;
            margin: 4rem 0;    border-radius: 10px;
        }
        
        .approach-section h2 {
            color: var(--white);
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .approach-subtitle {
            text-align: center;
            font-size: 1.2rem;
            margin-bottom: 3rem;
            opacity: 0.95;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .process-card {
            background: var(--white);
            border-radius: 15px;
            padding: 2.5rem 2rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .process-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        }
        
        .process-number {
            color: var(--text-dark);
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            line-height: 1;
        }
        
        .process-card h3 {
            color: var(--text-dark);
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }
        
        .process-card p {
            color: var(--text-light);
            line-height: 1.8;
            font-size: 1rem;
        }
        
        .approach-closing {
            text-align: center;
            margin-top: 3rem;
            font-size: 1.2rem;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.95;
            line-height: 1.8;
        }
/* Testimonials Section */
        .testimonials-grid-ef {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .testimonial-card-ef {
            background: var(--white);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            border-left: 4px solid var(--primary-teal);
        }
        
        .testimonial-card-ef blockquote {
            font-style: italic;
            color: var(--text-dark);
            line-height: 1.8;
            margin-bottom: 1rem;
        }
        
        .testimonial-card-ef .author {
            font-weight: 600;
            color: var(--primary-teal);
        }
        
        .testimonial-card-ef .author-detail {
            color: var(--text-light);
            font-size: 0.9rem;
        }

/* EF Pricing Section */
        .pricing-container {
            background: var(--white);
            padding: 3rem;
            border-radius: 10px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
            max-width: 700px;
            margin: 2rem auto;
        }
        .pricing-grid .pricing-container{padding: 2rem;}
        .pricing-container .pricing-header {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .pricing-container .pricing-header h3 {
            color: var(--primary-teal);
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }
        
        .pricing-container .price {
            font-size: 3rem;
            color: var(--primary-teal);
            font-weight: bold;
        }
        
        .pricing-container .price span {
            font-size: 1.5rem;
            color: var(--text-light);
        }
        
        .pricing-container .pricing-note {
            color: var(--text-light);
            margin-top: 0.5rem;
        }
        
        .pricing-container .packages {
            margin: 2rem 0;
        }
        
        .pricing-container .packages h4 {
            color: var(--primary-teal);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        
        .pricing-container .package-item {
            padding: 1rem 0;
            border-bottom: 1px solid var(--light-teal);
        }
        
        .pricing-container .package-item:last-child {
            border-bottom: none;
        }
        
        .pricing-container .package-item strong {
            color: var(--primary-teal);
        }
        
        .pricing-container .package-note {
            font-style: italic;
            color: var(--text-light);
            text-align: center;
            margin-top: 1.5rem;
            line-height: 1.7;
        }

/* EF FAQ Section */
        .faq-container-ef {
            max-width: 900px;
            margin: 2rem auto;
        }
        
        .faq-container-ef .faq-item {
            background: var(--white);
            margin-bottom: 1rem;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            overflow: hidden;
        }
        
        .faq-container-ef .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--light-teal);
            transition: background 0.3s;
        }
        
        .faq-container-ef .faq-question:hover {
            background: #d5e9e9;
        }
        
        .faq-container-ef .faq-question h3 {
            color: var(--primary-teal);
            font-size: 1.1rem;
            margin: 0;
            flex: 1;
        }
        
        .faq-container-ef .faq-icon {
            font-size: 1.5rem;
            color: var(--primary-teal);
            transition: transform 0.3s;
            font-weight: bold;
        }
        
        .faq-container-ef .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        
        .faq-container-ef .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }
        
        .faq-container-ef .faq-answer-content {
            padding: 1.5rem;
            color: var(--text-light);
            line-height: 1.8;
        }
        
        .faq-container-ef .faq-item.active .faq-answer {
            max-height: 500px;
        }
        /* Final CTA */
        .final-cta {
            background: linear-gradient(135deg, #3d7872 0%, #4a8d86 100%);
            color: white;
            text-align: center;
            padding: 4rem 2rem;
        }
        
        .final-cta h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .final-cta p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }
        /* EF Final CTA Section */
        .final-cta-ef {
            background: linear-gradient(135deg, var(--primary-teal) 0%, var(--accent-teal) 100%);
            color: var(--white);
            padding: 4rem 5%;
            text-align: center;
            border-radius: 10px;
        }
        
        .final-cta-ef h2 {
            color: var(--white);
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        
        .final-cta-ef p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .final-cta-ef .cta-button {
            background: var(--white);
            color: var(--primary-teal);
        }

/* Form Section */
        .form-container {
            max-width: 1200px;
            margin: -2rem auto 4rem;
            padding: 0 5%;
        }
        
        .form-wrapper {
            background: var(--white);
            border-radius: 10px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            overflow: hidden;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
        }
        
        .form-info {
            background: var(--light-teal);
            padding: 3rem;
        }
        
        .form-info h2 {
            color: var(--primary-teal);
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }
        
        .form-info p {
            color: var(--text-dark);
            margin-bottom: 2rem;
            line-height: 1.8;
        }
        
        .consultation-benefits {
            list-style: none;
            margin-bottom: 2rem;
        }
        
        .consultation-benefits li {
            padding: 0.75rem 0;
            display: flex;
            align-items: start;
            gap: 0.75rem;
        }
        
        .consultation-benefits li::before {
            content: "✓";
            color: var(--primary-teal);
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .contact-quick {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid var(--primary-teal);
        }
        
        .contact-quick h3 {
            color: var(--primary-teal);
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
            color: var(--text-dark);
        }
        
        .contact-item a {
            color: var(--primary-teal);
            text-decoration: none;
        }
        
        .contact-item a:hover {
            text-decoration: underline;
        }
        
        .form-section {
            padding: 3rem;
        }
        
        .form-section h2 {
            color: var(--text-dark);
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }
        
        .form-subtitle {
            color: var(--text-light);
            margin-bottom: 2rem;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
            font-weight: 500;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.3s;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-teal);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }
        
        .checkbox-group {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        
        .checkbox-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .checkbox-item input[type="checkbox"] {
            width: auto;
            cursor: pointer;
        }
        
        .checkbox-item label {
            margin: 0;
            font-weight: normal;
            cursor: pointer;
        }
        
        .required {
            color: var(--error-red);
        }
        
        .submit-button {
            width: 100%;
            padding: 1rem 2rem;
            background: var(--primary-teal);
            color: var(--white);
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
        }
        
        .submit-button:hover {
            background: var(--dark-teal);
            transform: translateY(-2px);
        }
        
        .form-footer {
            margin-top: 1rem;
            font-size: 0.85rem;
            color: var(--text-light);
            text-align: center;
        }
        
        .form-footer a {
            color: var(--primary-teal);
            text-decoration: none;
        }
        
        /* Success/Error Messages */
        .message {
            padding: 1rem;
            border-radius: 5px;
            margin-bottom: 1.5rem;
            display: none;
        }
        
        .message.success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        
        .message.error {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        
        .message.show {
            display: block;
        }
/* Testimonial Snippet */
        .testimonial-snippet {
            background: var(--light-teal);
            padding: 2rem;
            border-radius: 10px;
            max-width: 900px;
            margin: 0 auto 4rem;
            border-left: 5px solid var(--primary-teal);
        }
        
        .testimonial-snippet blockquote {
            font-style: italic;
            color: var(--text-dark);
            line-height: 1.8;
            margin-bottom: 1rem;
            font-size: 1.05rem;
        }
        
        .testimonial-snippet .author {
            font-weight: 600;
            color: var(--primary-teal);
        }
        
        /* Session Options */
        .session-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .session-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            border-top: 4px solid var(--primary-teal);
        }
        
        .session-card .icon {
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        
        .session-card h3 {
            color: var(--primary-teal);
            font-size: 1.2rem;
            margin-bottom: 0.75rem;
        }
        
        .session-card p {
            color: var(--text-light);
            line-height: 1.7;
        }
        
        /* How It Works Section */
        .how-it-works-section {
            background: linear-gradient(135deg, var(--primary-teal) 0%, var(--accent-teal) 100%);
            color: var(--white);
            padding: 4rem 5%;
            margin: 4rem 0;
        }
        
        .how-it-works-section h2 {
            color: var(--white);
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .how-it-works-subtitle {
            text-align: center;
            font-size: 1.2rem;
            margin-bottom: 3rem;
            opacity: 0.95;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .how-it-works-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .how-it-works-card {
            background: var(--white);
            border-radius: 15px;
            padding: 2.5rem 2rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .how-it-works-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        }
        
        .step-number {
            color: var(--text-dark);
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            line-height: 1;
        }
        
        .how-it-works-card h3 {
            color: var(--text-dark);
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }
        
        .how-it-works-card p {
            color: var(--text-light);
            line-height: 1.8;
            font-size: 1rem;
        }
 /* Urgency Banner */
        .urgency-banner {
            background: #fff3cd;
            border-left: 4px solid #ffc107;
            padding: 1rem;
            margin: 2rem auto;
            max-width: 900px;
            border-radius: 5px;
            text-align: center;
        }
        
        .urgency-banner p {
            color: #856404;
            margin: 0;
            font-weight: 500;
        }

.p-top-3rem{padding-top: 3rem;}
.p-bottom-3rem{padding-bottom: 3rem;}


        /* Footer */
        footer {
            background: #2c3e50;
            color: white;
            padding: 3rem 2rem 2rem;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 2rem;
        }
        
        .footer-about h3 {
            color: #3d7872;
            margin-bottom: 1rem;
        }
        
        .footer-about p {
            line-height: 1.8;
            opacity: 0.9;
        }
        
        .footer-column h4 {
            margin-bottom: 1rem;
            color: white;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 0.5rem;
        }
        
        .footer-column a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
        }
        
        .footer-column a:hover {
            color: white;
        }
        
        .contact-info {
            margin-top: 1rem;
        }
        
        .contact-info p {
            margin-bottom: 0.5rem;
        }
        
        .contact-info a {
            color: #3d7872;
            font-weight: 600;
            text-decoration: none;
            font-size: 1.1rem;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            opacity: 0.7;
        }
        .mobile-menu-toggle{display:none;}

.nav-links li {
    position: relative;
}

.nav-links li .sub-menu {
    position: absolute;
    top: 100%; /* Below the parent */
    left: 0;
    background: white;
    min-width: 220px;
    padding: 15px 0;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 9999; list-style:none;
}

.nav-links li .sub-menu li a {
    display: block;
    padding: 10px 20px;
    color: #2d3748;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
}

.nav-links li .sub-menu li a:hover {
    background: #f4f4f4;
    color: #2c7873;
}

.nav-links li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.nav-links li:hover > a {
    color: #2c7873;
}
.nav-links li.menu-item-has-children > a::after {
    content: " ▾";
    margin-left: 6px;  display: inline-block;
    position: relative;top: 2px;
    font-size: 1.2em;
    transition: transform 0.25s ease;
}

.nav-links li.menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}
/* Blog Page */
.blog-hero {
            background: linear-gradient(135deg, #2c7873 0%, #4a7c59 100%);
            color: white;
            padding: 60px 20px 40px;
        }
        
        .blog-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .breadcrumb {
            font-size: 0.9rem;
            margin-bottom: 20px;
            opacity: 0.9;
        }
        
        .breadcrumb a {
            color: white;
            text-decoration: none;
        }
        
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        
        .blog-category {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            margin-bottom: 15px;
            backdrop-filter: blur(10px);
        }
.blog-meta {
            font-size: 0.95rem;
            opacity: 0.9;
            margin-bottom: 10px;
        }
        
        .location-tag {
            font-size: 0.9rem;
            opacity: 0.85;
        }
        
        article {
            padding: 60px 20px;
            background: white;
        }
        
        .article-content {
            max-width: 750px;
            margin: 0 auto;
        }
.article-content h2 {
            font-size: 1.9rem;
            color: #2d3748;
            margin-top: 50px;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        
        .article-content h3 {
            font-size: 1.5rem;
            color: #2c7873;
            margin-top: 40px;
            margin-bottom: 15px;
            line-height: 1.3;
        }
        
        .article-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #444;
            margin-bottom: 20px;
        }
        
        .intro-paragraph {
            font-size: 1.2rem;
            color: #2d3748;
            line-height: 1.8;
            margin-bottom: 25px;
        }
        
        .highlight-box {
            background: #f4f1ed;
            border-left: 4px solid #2c7873;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        
        .highlight-box p {
            margin-bottom: 15px;
        }
        
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        
        .sign-section {
            margin-top: 50px;
            margin-bottom: 50px;
        }
        
        .sign-number {
            background: linear-gradient(135deg, #2c7873 0%, #4a7c59 100%);
            color: white;
            padding: 30px;
            border-radius: 12px;
            margin-bottom: 20px;
        }
        
        .sign-number h3 {
            color: white;
            margin-top: 0;
            font-size: 1.6rem;
        }
        
        .what-happening {
            background: #faf8f5;
            padding: 20px 25px;
            border-radius: 8px;
            margin: 20px 0;
        }
        
        .what-happening strong {
            color: #2c7873;
            display: block;
            margin-bottom: 10px;
            font-size: 1.05rem;
        }
        
        .comparison {
            background: #f4f1ed;
            padding: 20px 25px;
            border-radius: 8px;
            margin: 15px 0;
        }
        
        .comparison strong {
            color: #2d3748;
            display: block;
            margin-bottom: 8px;
        }
        
        .article-content ul {
            margin: 20px 0 20px 30px;
            line-height: 1.8;
        }
        
        .article-content ul li {
            font-size: 1.1rem;
            color: #444;
            margin-bottom: 10px;
        }
        
        .article-content strong {
            color: #2d3748;
        }
.cta-box {
            background: linear-gradient(135deg, #2c7873 0%, #4a7c59 100%);
            color: white;
            padding: 40px;
            border-radius: 12px;
            text-align: center;
            margin: 50px 0;
        }
        
        .cta-box h3 {
            color: white;
            font-size: 1.8rem;
            margin: 0 0 15px 0;
        }
        
        .cta-box p {
            color: white;
            opacity: 0.95;
            margin-bottom: 25px;
        }
        
        .cta-button {
            display: inline-block;
            background: white;
            color: #2c7873;
            padding: 15px 35px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            transition: transform 0.2s, box-shadow 0.2s;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }
        
        .author-bio {
            background: #faf8f5;
            padding: 40px;
            border-radius: 12px;
            margin-top: 60px;
            border-top: 3px solid #2c7873;
        }
        
        .author-bio h4 {
            color: #2d3748;
            font-size: 1.1rem;
            margin-bottom: 15px;
        }
        
        .author-bio p {
            font-size: 1rem;
            color: #555;
            margin-bottom: 0;
        }
        
        .related-posts {
            padding: 70px 20px;
            background: #f4f1ed;
        }
        
        .related-posts h2 {
            text-align: center;
            margin-top: 0;
            margin-bottom: 40px;
        }
        
        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .related-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            transition: transform 0.2s, box-shadow 0.2s;
            text-decoration: none;
            display: block;
        }
        
        .related-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        }
        
        .related-image {
            background: linear-gradient(135deg, #2c7873 0%, #4a7c59 100%);
            height: 150px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
        }
        
        .related-content {
            padding: 25px;
        }
        
        .related-card h3 {
            color: #2d3748;
            font-size: 1.15rem;
            margin: 0 0 10px 0;
            line-height: 1.3;
        }
        
        .related-card p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 12px;
        }
        
        .read-more {
            color: #2c7873;
            font-weight: 600;
            font-size: 0.9rem;
        }
        /* Responsive */
        @media (max-width: 768px) {
			.mobile-menu-toggle{display:block;}
	.mobile-menu-toggle {
   background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #2d3748;
}

.nav-links li {
        width: 100%;
        text-align: center;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }
	.nav-links li.nav-cta {
    padding-top: 20px; border-bottom: 0px solid #eee;
}

    .nav-links { display: none; position: absolute; top: 70px; left: 0; right: 0; background: white; flex-direction: column; gap: 0; padding: 20px; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); }
    .nav-links.active { display: flex; }
			
            .hero h1 {
                font-size: 2rem;
            }
            
            .about-grid,
            .services-grid,
            .resources-grid,
			.pricing-grid,
            .testimonials-grid,
            .blog-grid,
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .credentials {
                grid-template-columns: 1fr;
            }
            
            .nav-links {
                flex-direction: column;
                gap: 1rem;
            }
			 .nav-links li {
        position: static !important;
    }

    .nav-links li .sub-menu {
        display: none;
        padding: 5px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-5px);
        transition: all 0.25s ease;
        position: static !important;
        background: transparent;
        box-shadow: none;
    }
.nav-links li .sub-menu li{padding: 10px 0;
        border-bottom: 0px solid #eee;}			
.nav-links li:hover > .sub-menu {
        display: none;
    }
    .nav-links li.open > .sub-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
.subjects-grid, .benefits-grid, .difference-grid, .included-grid, .testimonials-grid, .footer-content {
        grid-template-columns: 1fr;
    }
.right-for-grid, .comparison-grid, .gain-grid, .testimonials-grid, .footer-content {
        grid-template-columns: 1fr;
    }			
	.trust-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .grade-levels {
        flex-direction: column;
    }			
.form-wrapper {
        grid-template-columns: 1fr;
    }
.form-section {
    padding: 5%;
    width: 100%;
    order: 1;
    }
.form-info {
	padding: 5%;
    width: 100%;
    order: 2;
    }			
        }