/* Content Section Styles - Matching Reference Design */
.content-section {
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.7;
    color: #374151;
}

.content-section h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    margin-top: 2.5rem;
    line-height: 1.3;
}

.content-section h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1rem;
    margin-top: 2rem;
    line-height: 1.4;
}

.content-section p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.content-section ul,
.content-section ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.content-section li {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.content-section strong {
    color: #1e3a8a;
    font-weight: 600;
}

/* Section-specific styling to match reference images */
#why-choose-us .content-section,
#common-problems .content-section,
#service-process .content-section,
#benefits-professional .content-section,
#faqs .content-section {
    max-width: 56rem;
    margin: 0 auto;
}

/* Why Choose Us Section */
#why-choose-us .content-section h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

#why-choose-us .content-section p {
    margin-bottom: 1.25rem;
}

/* Common Problems Section */
#common-problems .content-section h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

/* Service Process Section */
#service-process .content-section h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

/* Benefits Section */
#benefits-professional .content-section h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

#benefits-professional .content-section h4 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

/* FAQs Section */
#faqs .content-section h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

/* Bottom Call Widget Animation */
@keyframes bounce-slow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-bounce-slow {
    animation: bounce-slow 2s infinite;
}

/* Call Widget Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-section h3 {
        font-size: 1.5rem;
    }

    .content-section h4 {
        font-size: 1.25rem;
    }

    .content-section p,
    .content-section li {
        font-size: 1rem;
    }
}

/* Animation Classes */
.animate-fadeIn {
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}