/* Hero Large */
.hero-large {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    color: white;
    padding: 120px 20px;
    text-align: center;
}

.hero-large h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-large p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.95;
    line-height: 1.7;
}

/* Services Overview */
.services-overview {
    padding: 100px 20px;
    background: white;
}

.services-overview h2 {
    text-align: center;
    font-size: 40px;
    color: #1e40af;
    margin-bottom: 70px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    border-top: 4px solid #fbbf24;
}

.service-card h3 {
    color: #1e40af;
    margin-bottom: 15px;
    font-size: 20px;
}

.service-card p {
    color: #666;
    line-height: 1.7;
}

/* Why Section */
.why-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.why-section h2 {
    text-align: center;
    font-size: 40px;
    color: #1e40af;
    margin-bottom: 70px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.why-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.why-card h3 {
    color: #1e40af;
    margin-bottom: 15px;
    font-size: 18px;
}

.why-card p {
    color: #666;
    line-height: 1.7;
}

/* Process */
.process {
    padding: 100px 20px;
    background: white;
}

.process h2 {
    text-align: center;
    font-size: 40px;
    color: #1e40af;
    margin-bottom: 70px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.step {
    text-align: center;
    padding: 40px 20px;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 15px;
}

.step h3 {
    color: #1e40af;
    margin-bottom: 10px;
    font-size: 20px;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 40px;
    color: #1e40af;
    margin-bottom: 70px;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.testimonial p {
    color: #333;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.testimonial-author {
    color: #1e40af;
    font-weight: 600;
    font-size: 14px;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.final-cta h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-large h1 {
        font-size: 32px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}