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

/* Prevent horizontal overflow */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    position: relative;
}

/* Prevent all containers from overflowing */
.main-container,
.programs-section,
.benefits-section,
.featured-programs,
.testimonials-section,
.pricing-section,
.faq-section,
.about-section,
.final-cta,
.legal-section,
.contact-section {
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700&display=swap');

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
}

/* Header Styles - News Theme */
.news-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
    color: white;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.4);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.menu-icon {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.menu-icon:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.menu-icon svg {
    transition: transform 0.3s ease;
}

.menu-icon:hover svg {
    transform: scale(1.1);
}

.site-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 4px;
    text-align: center;
    flex: 1;
    margin: 0 20px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    position: relative;
}

.site-title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, white, transparent);
}

.search-icon {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.search-icon:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.search-icon svg {
    transition: transform 0.3s ease;
}

.search-icon:hover svg {
    transform: scale(1.1);
}

/* Main Container */
.main-container {
    width: 100%;
    margin: 0;
    background-color: transparent;
    position: relative;
}

.main-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(25, 118, 210, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    position: relative;
    z-index: 1;
    width: 100%;
    overflow-x: hidden;
}


/* Separator */
.separator {
    border: none;
    height: 2px;
    background-color: #e0e0e0;
    margin: 25px 0;
}



/* CTA Buttons - Updated for balanced size */
.cta-button {
    display: block;
    padding: 14px 40px !important;
    margin: 15px auto !important;
    text-decoration: none;
    border-radius: 8px !important;
    font-weight: 600;
    font-size: 16px !important;
    letter-spacing: 0.3px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-width: 200px !important;
    max-width: 260px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.primary {
    background: linear-gradient(135deg, #1e3a8a, #1e40af, #2563eb);
    color: white;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
    border: 2px solid transparent;
}

.cta-button.primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(30, 58, 138, 0.5);
}

.cta-button.secondary {
    background: linear-gradient(135deg, #1e3a8a, #1d4ed8, #2563eb);
    color: white;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
    border: 2px solid transparent;
}

.cta-button.secondary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(30, 58, 138, 0.4);
}

.cta-button.large {
    font-size: 17px !important;
    padding: 16px 50px !important;
    font-weight: 700;
    min-width: 220px !important;
    max-width: 280px;
}

/* Programs Section */
.programs-section {
    padding: 0;
    margin: 0;
}

.programs-section h2 {
    font-family: 'Playfair Display', serif;
    color: #1a202c;
    font-size: 56px;
    text-align: center;
    margin: 0 auto 40px;
    font-weight: 700;
    line-height: 1.1;
    max-width: 900px;
    letter-spacing: -0.5px;
    position: relative;
    padding: 30px 0;
}

.programs-section h2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1976d2, #2196f3);
    border-radius: 2px;
}

.programs-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #1976d2, transparent);
}

.programs-intro {
    text-align: center;
    font-size: 20px;
    line-height: 1.7;
    margin: 0 auto 50px;
    max-width: 700px;
    color: #4a5568;
    font-weight: 400;
    padding: 0 20px;
}

/* Benefits Section */
.benefits-section {
    margin: 80px 0;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(248,250,252,0.9) 100%);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.benefits-section h3 {
    font-family: 'Playfair Display', serif;
    color: #1a202c;
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.benefits-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1e3a8a, #2563eb);
    border-radius: 2px;
}

.benefits-section > p {
    text-align: center;
    font-size: 18px;
    color: #4a5568;
    max-width: 800px;
    margin: 30px auto 50px;
    line-height: 1.7;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    gap: 30px;
    margin: 50px 0;
    padding: 0 20px;
    width: 100%;
    overflow: hidden;
}

.benefit-item {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(25, 118, 210, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(25, 118, 210, 0.1);
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1976d2, #2196f3);
}

.benefit-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(25, 118, 210, 0.2);
    border-color: rgba(25, 118, 210, 0.3);
}

.benefit-item h4 {
    color: #1e3a8a;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.benefit-item p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 16px;
}

/* Featured Programs */
.featured-programs {
    margin: 40px 0;
}

.featured-programs h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 15px;
}

.program-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 20px;
    margin: 30px 0;
    width: 100%;
    overflow: hidden;
}

.program-card {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
}

.program-card h4 {
    color: #1976d2;
    font-size: 20px;
    margin-bottom: 15px;
}

.program-meta {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    font-size: 14px;
}

.program-meta span {
    background-color: #f0f0f0;
    padding: 5px 10px;
    border-radius: 15px;
    color: #666;
}

.level {
    background-color: #e8f5e8 !important;
    color: #2e7d32 !important;
}

.duration {
    background-color: #e3f2fd !important;
    color: #1976d2 !important;
}

.participants {
    background-color: #fff3e0 !important;
    color: #f57c00 !important;
}

/* Testimonials */
.testimonials-section {
    margin: 40px 0;
}

.testimonials-section h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 15px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 20px;
    margin: 30px 0;
    width: 100%;
    overflow: hidden;
}

.testimonial-card {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #1976d2;
}

.testimonial-card blockquote {
    font-style: italic;
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.testimonial-card cite {
    color: #666;
    font-style: normal;
}

.testimonial-card cite strong {
    color: #1976d2;
}

/* Pricing Section */
.pricing-section {
    margin: 40px 0;
    text-align: center;
}

.pricing-section h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 15px;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(248,250,252,0.9));
    color: #2c3e50;
    padding: 40px;
    border-radius: 20px;
    max-width: 400px;
    margin: 30px auto;
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.15);
    border: 2px solid rgba(30, 58, 138, 0.1);
    backdrop-filter: blur(10px);
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(30, 58, 138, 0.1);
}

.plan-header h4 {
    font-size: 24px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.price {
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 6px;
    margin-bottom: 5px;
    line-height: 1;
}

.currency {
    font-size: 16px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 8px;
    align-self: flex-end;
}

.amount {
    font-size: 48px;
    font-weight: 900;
    color: #1e3a8a;
    line-height: 0.9;
}

.features-list {
    list-style: none;
    text-align: left;
    margin: 30px 0;
    padding: 0;
}

.features-list li {
    padding: 12px 0;
    font-size: 16px;
    color: #4a5568;
    line-height: 1.5;
    border-bottom: 1px solid rgba(30, 58, 138, 0.05);
    display: flex;
    align-items: center;
}

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

.features-list li::before {
    content: "✓";
    color: #1e3a8a;
    font-weight: bold;
    font-size: 18px;
    margin-right: 12px;
    flex-shrink: 0;
}

.guarantee {
    font-size: 14px;
    margin-top: 20px;
    color: #6b7280;
    text-align: center;
    font-style: italic;
}

/* Transformation Section */
.transformation-section {
    margin: 40px 0;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.transformation-section h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 15px;
}

.transformation-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.transformation-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    padding-left: 25px;
}

.transformation-list li:before {
    content: "✓";
    color: #1976d2;
    font-weight: bold;
    position: absolute;
    left: 0;
}

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

/* About Section */
.about-section {
    margin: 40px 0;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.about-section h3 {
    color: #1976d2;
    font-size: 24px;
    margin-bottom: 15px;
}

.about-section h4 {
    color: #333;
    font-size: 20px;
    margin: 25px 0 15px 0;
}

.about-section h5 {
    color: #1976d2;
    font-size: 18px;
    margin-bottom: 10px;
}

.about-section p {
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 20px;
    margin: 30px 0;
    width: 100%;
    overflow: hidden;
}

.value-item {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #1976d2;
}

.value-item h5 {
    margin-bottom: 10px;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,250,252,0.9) 100%);
    color: #2c3e50;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    margin: 80px 0;
    box-shadow: 0 20px 50px rgba(30, 58, 138, 0.1);
    border: 2px solid rgba(30, 58, 138, 0.08);
    backdrop-filter: blur(10px);
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e3a8a, #2563eb, #3b82f6);
    border-radius: 20px 20px 0 0;
}

.final-cta h3 {
    font-family: 'Playfair Display', serif;
    color: #1a202c;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.2;
}

.final-cta p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a5568;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 30px 0;
    text-align: center;
    margin-top: 50px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 5px;
}

.footer-links a:hover {
    color: #2196f3;
}

.copyright {
    font-size: 14px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-content {
        padding: 50px 30px;
    }
    
    .programs-section h2 {
        font-size: 48px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
        gap: 25px;
    }
    
    .program-cards {
        grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    }
    
    .faq-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 0 15px;
    }
    
    .site-title {
        font-size: 24px;
        letter-spacing: 2px;
        margin: 0 15px;
    }
    
    .menu-icon,
    .search-icon {
        padding: 6px;
    }
    
    .menu-icon svg,
    .search-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .main-content {
        padding: 40px 20px;
    }
    
    .programs-section h2 {
        font-size: 42px;
        letter-spacing: -0.3px;
        padding: 20px 0;
    }
    
    .benefits-section {
        margin: 60px 0;
        padding: 40px 0;
    }
    
    .benefits-section h3 {
        font-size: 28px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }
    
    .benefit-item {
        padding: 25px 20px;
    }
    
    .featured-programs {
        margin: 40px 0;
    }
    
    .featured-programs h3 {
        font-size: 24px;
    }
    
    .program-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .program-card {
        padding: 20px;
    }
    
    .program-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .testimonials-section {
        margin: 40px 0;
    }
    
    .testimonials-section h3 {
        font-size: 24px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .pricing-section {
        margin: 40px 0;
    }
    
    .pricing-section h3 {
        font-size: 24px;
    }
    
    .pricing-card {
        padding: 30px 20px;
        margin: 20px 10px;
    }
    
    .amount {
        font-size: 40px;
    }
    
    .currency {
        font-size: 14px;
    }
    
    .faq-section {
        margin: 50px 0;
        padding: 40px 15px;
    }
    
    .faq-section h3 {
        font-size: 28px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
    }
    
    .faq-item {
        padding: 20px 15px;
    }
    
    .faq-item h4 {
        font-size: 16px;
        padding-left: 20px;
    }
    
    .faq-item h4::before {
        width: 16px;
        height: 16px;
        font-size: 10px;
    }
    
    .about-section {
        margin: 40px 0;
        padding: 30px 15px;
    }
    
    .about-section h3 {
        font-size: 24px;
    }
    
    .about-section h4 {
        font-size: 18px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .value-item {
        padding: 20px 15px;
    }
    
    .final-cta {
        margin: 40px 0;
        padding: 40px 20px;
    }
    
    .final-cta h3 {
        font-size: 24px;
    }
    
    .final-cta p {
    font-size: 16px;
}

    .cta-button {
        margin: 10px auto !important;
        min-width: 160px !important;
        max-width: 200px;
    }
    
    .cta-button.large {
        min-width: 180px !important;
        max-width: 220px;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 25px 15px;
    }
    
    .programs-section h2 {
        font-size: 32px;
        letter-spacing: -0.2px;
        padding: 15px 0;
    }
    
    .benefits-section {
        margin: 40px 0;
        padding: 30px 0;
    }
    
    .benefits-section h3 {
        font-size: 24px;
    }
    
    .benefit-item {
        padding: 20px 15px;
    }
    
    .faq-section {
        margin: 40px 0;
        padding: 30px 0;
    }
    
    .faq-section h3 {
        font-size: 24px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .faq-item {
        padding: 20px 15px;
    }
    
    .faq-item h4 {
        font-size: 16px;
        padding-left: 20px;
    }
    
    .faq-item h4::before {
        width: 16px;
        height: 16px;
        font-size: 10px;
    }
    
    .final-cta {
        margin: 40px 0;
        padding: 40px 20px;
    }
    
    .final-cta h3 {
        font-size: 24px;
    }
    
    .final-cta p {
    font-size: 16px;
    }
    
    
    .cta-section {
        padding: 20px;
    }
    
    .programs-section {
    padding: 20px;
    }
    
    .pricing-card {
        padding: 25px;
    }
    
    .price {
        font-size: 36px;
    }
}


/* Hover Effects */
.benefit-item:hover,
.program-card:hover,
.testimonial-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* FAQ Section */
.faq-section {
    margin: 80px 0;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(248,250,252,0.9) 100%);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.faq-section h3 {
    font-family: 'Playfair Display', serif;
    color: #1a202c;
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.faq-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1e3a8a, #2563eb);
    border-radius: 2px;
}

.faq-section > p {
    text-align: center;
    font-size: 18px;
    color: #4a5568;
    max-width: 800px;
    margin: 30px auto 50px;
    line-height: 1.7;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
    gap: 25px;
    margin: 50px 0;
    padding: 0 20px;
    width: 100%;
    overflow: hidden;
}

.faq-item {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.8) 100%);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.08);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(30, 58, 138, 0.08);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #1e3a8a, #2563eb);
    border-radius: 16px 16px 0 0;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.12);
    border-color: rgba(30, 58, 138, 0.15);
}

.faq-item h4 {
    color: #1e3a8a;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
        line-height: 1.4;
    position: relative;
    padding-left: 25px;
}

.faq-item h4::before {
    content: "?";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
}

/* Legal Pages Styles */
.legal-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.legal-section h1 {
    font-family: 'Playfair Display', serif;
    color: #1a202c;
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.legal-intro {
    text-align: center;
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 40px;
    line-height: 1.6;
}

.legal-content {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,250,252,0.9) 100%);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
    border: 1px solid rgba(30, 58, 138, 0.1);
    margin-bottom: 40px;
}

.legal-content h2 {
    color: #1e3a8a;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(30, 58, 138, 0.1);
}

.legal-content h3 {
    color: #1e3a8a;
    font-size: 22px;
    font-weight: 600;
    margin: 30px 0 15px 0;
}

.legal-content h4 {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0 10px 0;
}

.legal-content p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 16px;
}

.legal-disclaimer {
    background-color: rgba(30, 58, 138, 0.05);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #1e3a8a;
    margin-top: 30px;
}

.legal-navigation {
    text-align: center;
    margin-top: 40px;
}

/* Contact Page Styles */
.contact-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.contact-section h1 {
    font-family: 'Playfair Display', serif;
    color: #1a202c;
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.contact-intro {
    text-align: center;
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 50px;
    line-height: 1.6;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-info h2 {
    color: #1e3a8a;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,250,252,0.9) 100%);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(30, 58, 138, 0.08);
    border: 1px solid rgba(30, 58, 138, 0.1);
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-details h3 {
    color: #1e3a8a;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-details p {
    color: #4a5568;
    margin: 4px 0;
}

.contact-note {
    font-size: 14px;
    color: #6b7280;
    font-style: italic;
}

/* Contact Form */
.contact-form-section h2 {
    color: #1e3a8a;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
}

.contact-form {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,250,252,0.9) 100%);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
    border: 1px solid rgba(30, 58, 138, 0.1);
}

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

.form-group label {
    display: block;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(30, 58, 138, 0.1);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e3a8a;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

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

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-group label {
    margin: 0;
    font-weight: 400;
    line-height: 1.5;
}

.checkbox-group a {
    color: #1e3a8a;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

/* Quick FAQ */
.faq-quick {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,250,252,0.9) 100%);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
    border: 1px solid rgba(30, 58, 138, 0.1);
    margin-bottom: 40px;
}

.faq-quick h2 {
    color: #1e3a8a;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.faq-quick > p {
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.6;
}

.faq-quick a {
    color: #1e3a8a;
    text-decoration: none;
}

.faq-quick a:hover {
    text-decoration: underline;
}

.quick-faq {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 20px;
    margin-top: 30px;
    width: 100%;
    overflow: hidden;
}

.quick-faq-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    border-left: 4px solid #1e3a8a;
}

.quick-faq-item h4 {
    color: #1e3a8a;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.quick-faq-item p {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.5;
        margin: 0;
    }
    
/* Responsive for Legal and Contact Pages */
@media (max-width: 768px) {
    .legal-section {
        padding: 30px 15px;
    }
    
    .legal-section h1 {
        font-size: 32px;
    }
    
    .legal-content {
        padding: 30px 20px;
    }
    
    .legal-content h2 {
        font-size: 24px;
    }
    
    .legal-content h3 {
        font-size: 20px;
    }
    
    .contact-section {
        padding: 30px 15px;
    }
    
    .contact-section h1 {
        font-size: 32px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .contact-methods {
        gap: 20px;
    }
    
    .contact-method {
        padding: 20px;
    }
    
    .faq-quick {
        padding: 30px 20px;
    }
    
    .quick-faq {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .legal-section {
        padding: 20px 10px;
    }
    
    .legal-section h1 {
        font-size: 28px;
    }
    
    .legal-intro {
    font-size: 16px;
    }
    
    .legal-content {
        padding: 20px 15px;
    }
    
    .legal-content h2 {
        font-size: 22px;
    }
    
    .legal-content h3 {
        font-size: 18px;
    }
    
    .legal-content h4 {
        font-size: 16px;
    }
    
    .legal-content p {
        font-size: 15px;
    }
    
    .contact-section {
        padding: 20px 10px;
    }
    
    .contact-section h1 {
        font-size: 28px;
    }
    
    .contact-intro {
        font-size: 16px;
    }
    
    .contact-form {
        padding: 20px 15px;
    }
    
    .form-group label {
        font-size: 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 15px;
        padding: 10px 12px;
    }
    
    .checkbox-group label {
        font-size: 14px;
    }
    
    .contact-method {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact-details h3 {
        font-size: 16px;
    }
    
    .contact-details p {
        font-size: 14px;
    }
    
    .faq-quick {
        padding: 20px 15px;
    }
    
    .faq-quick h2 {
        font-size: 22px;
    }
    
    .quick-faq-item {
        padding: 15px;
    }
    
    .quick-faq-item h4 {
        font-size: 15px;
    }
    
    .quick-faq-item p {
        font-size: 13px;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .main-content {
        padding: 20px 10px;
    }
    
    .programs-section h2 {
        font-size: 24px;
        padding: 10px 0;
    }
    
    .programs-intro {
        font-size: 15px;
    }
    
    .benefits-section {
        margin: 25px 0;
        padding: 25px 5px;
    }
    
    .benefit-item {
        padding: 15px 10px;
    }
    
    .benefit-item h4 {
        font-size: 16px;
    }
    
    .benefit-item p {
        font-size: 14px;
    }
    
    .pricing-card {
        padding: 20px 10px;
        margin: 10px 5px;
    }
    
    .amount {
        font-size: 32px;
    }
    
    .features-list li {
        font-size: 13px;
    }
    
    .cta-button {
        font-size: 13px !important;
        padding: 8px 15px !important;
        min-width: 120px !important;
        max-width: 160px;
    }
    
    .legal-section {
        padding: 15px 5px;
    }
    
    .legal-content {
        padding: 15px 10px;
    }
    
    .contact-section {
        padding: 15px 5px;
    }
    
    .contact-form {
        padding: 15px 10px;
    }
}

/* Scroll Behavior */
html {
    scroll-behavior: smooth;
}
