/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1d3666;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: #f0f7ff;
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1d3666;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #1d3666;
}

.stat-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1d3666;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #ffcfd4;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 24px;
    color: #1d3666;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1d3666;
    margin-bottom: 15px;
}

.feature-card p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.learn-more {
    background: #f0f7ff;
    border: 2px solid #ffcfd4;
    color: #1d3666;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.learn-more:hover {
    background: #ffcfd4;
    color: #1d3666;
}

.feature-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 15px;
}

.feature-details.active {
    max-height: 200px;
}

.feature-details ul {
    list-style: none;
    padding-top: 15px;
}

.feature-details li {
    padding: 5px 0;
    color: #64748b;
    position: relative;
    padding-left: 20px;
}

.feature-details li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffcfd4;
    font-weight: bold;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.benefit-card {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: #f0f7ff;
    border-radius: 12px;
    border-left: 4px solid #ffcfd4;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: #ffcfd4;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 20px;
    color: #1d3666;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1d3666;
    margin-bottom: 10px;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Modules Section */
.modules {
    padding: 80px 0;
    background: #f0f7ff;
}

.modules-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-button {
    background: #f0f7ff;
    border: 2px solid #ffcfd4;
    color: #1d3666;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab-button.active,
.tab-button:hover {
    background: #ffcfd4;
    color: #1d3666;
    border-color: #f0f7ff;
}

.tab-content {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.module-item {
    background: #f0f7ff;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 3px solid #ffcfd4;
    font-weight: 500;
    color: #1d3666;
    transition: all 0.3s ease;
}

.module-item:hover {
    background: #e2e8f0;
    transform: translateX(5px);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #f0f7ff;
    padding: 30px;
    border-radius: 12px;
    border-top: 4px solid #ffcfd4;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    color: #64748b;
    line-height: 1.6;
    font-size: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.testimonial-author h4 {
    color: #1d3666;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #64748b;
    font-size: 14px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #f0f7ff;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #1d3666;
    font-size: 16px;
}

.faq-question:hover {
    background: #f0f7ff;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 200px;
}

.faq-answer p {
    padding: 6px 20px 20px;
    color: #64748b;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-subtitle {
    font-size: 20px;
    color: #94a3b8;
    margin-bottom: 20px;
}

.cta-text p {
    color: #cbd5e1;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    color: #333;
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1d3666;
}

.form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1d3666;
}

.form-group textarea {
    grid-column: 1 / -1;
    resize: vertical;
}

.form-group select {
    grid-column: 1 / -1;
}

/* Buttons */
.cta-button {
    background: #ffcfd4;
    color: #1d3666;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 14px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 207, 212, 0.3);
}

.cta-button.secondary {
    background: #f0f7ff;
    color: #1d3666;
    border: 2px solid #ffcfd4;
}

.cta-button.primary {
    background: #ffcfd4;
    border: 2px solid #f0f7ff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 32px;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    /* Section padding adjustments */
    .features,
    .benefits,
    .modules,
    .testimonials,
    .faq,
    .final-cta {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    /* Features responsive */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-card h3 {
        font-size: 20px;
    }
    
    .feature-card p {
        font-size: 15px;
    }
    
    /* Benefits responsive */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .benefit-card {
        padding: 25px 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .benefit-card h3 {
        font-size: 18px;
    }
    
    /* Modules responsive */
    .tab-buttons {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .tab-button {
        width: 100%;
        max-width: 250px;
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .tab-content {
        padding: 25px 20px;
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .module-item {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    /* Testimonials responsive */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-content p {
        font-size: 15px;
    }
    
    .testimonial-author h4 {
        font-size: 16px;
    }
    
    .testimonial-author span {
        font-size: 13px;
    }
    
    /* FAQ responsive */
    .faq-question {
        padding: 15px;
        font-size: 15px;
    }
    
    .faq-answer p {
        padding: 6px 15px 15px;
        font-size: 14px;
    }
    
    /* CTA responsive */
    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .cta-text h2 {
        font-size: 28px;
    }
    
    .cta-subtitle {
        font-size: 18px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-group {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 40px 0 30px;
    }
    
    .hero-text h1 {
        font-size: 26px;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .stat {
        flex: 1;
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    /* Further reduce padding for small screens */
    .features,
    .benefits,
    .modules,
    .testimonials,
    .faq,
    .final-cta {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .section-header p {
        font-size: 15px;
    }
    
    .feature-card,
    .contact-form {
        padding: 20px 15px;
    }
    
    .feature-card h3 {
        font-size: 18px;
    }
    
    .benefit-card {
        padding: 20px 15px;
    }
    
    .benefit-card h3 {
        font-size: 16px;
    }
    
    .tab-content {
        padding: 20px 15px;
    }
    
    .testimonial-card {
        padding: 20px 15px;
    }
    
    .cta-text h2 {
        font-size: 24px;
    }
    
    .cta-subtitle {
        font-size: 16px;
    }
    
    .contact-form {
        padding: 25px 15px;
    }
    
    .contact-form h3 {
        font-size: 20px;
    }
}

/* Additional mobile optimizations */
@media (max-width: 360px) {
    .hero-text h1 {
        font-size: 22px;
    }
    
    .section-header h2 {
        font-size: 20px;
    }
    
    .feature-card,
    .benefit-card,
    .testimonial-card {
        padding: 15px;
    }
    
    .tab-button {
        padding: 8px 15px;
        font-size: 13px;
    }
    
    .module-item {
        padding: 10px 12px;
        font-size: 13px;
    }
}
