/* Enhanced Hero Section */
.hero-section {
    background: url('../images/hero-image.png') no-repeat center center;
    background-size: cover;
    color: var(--white);
    padding: 180px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}
.faq-section {
    padding: 40px 0 40px 0;
}
.hero-section h1 {
    color: var(--white);
    font-size: 4rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    overflow-x: hidden;
}

.hero-section .lead {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 20px auto 40px;
    max-width: 650px;
    overflow-x: hidden;
}

/* Services Section */
.service-summary {
    padding: 100px 0;
    background-color: #F9FAFB;
}

.service-summary h2, .testimonials-preview h2 {
    margin-bottom: 60px;
}

.service-card .icon {
    font-size: 40px;
    color: var(--accent-blue);
    margin-bottom: 25px;
}

.service-card h4 {
    color: var(--navy);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* Testimonials Preview */
.testimonials-preview {
    padding: 100px 0;
}

.testimonial-card img.animated-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 25px;
    object-fit: cover;
    border: 3px solid #E0E0E0;
}

.testimonial-card strong {
    display: block;
    color: var(--navy);
    margin-top: 20px;
}

.testimonial-card .text-muted {
    font-size: 0.9rem;
}

/* === Responsive Design === */

/* Tablets and smaller devices */
@media (max-width: 992px) {
    .hero-section {
        padding: 120px 0;
    }
    .hero-section h1 {
        font-size: 3.5rem;
    }
    .hero-section .lead {
        font-size: 1.3rem;
    }
    .service-summary, .testimonials-preview {
        padding: 80px 0;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
    }
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section .lead {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    .service-summary, .testimonials-preview {
        padding: 60px 0;
    }
    .service-summary h2, .testimonials-preview h2 {
        margin-bottom: 40px;
    }
}
