.content-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.content-section h2 {
    color: #0d47a1;
    font-size: 2rem;
    margin-bottom: 15px;
}

.content-section p {
    color: #444;
    margin-bottom: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    border-top: 5px solid #d32f2f;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    color: #0d47a1;
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.service-card ul {
    padding-left: 20px;
    color: #444;
}

.service-card li {
    margin-bottom: 8px;
}

.feature-section {
    background: white;
    margin-top: 60px;
    padding: 50px 30px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.feature-section ul {
    padding-left: 20px;
    margin-top: 20px;
}

.feature-section li {
    margin-bottom: 12px;
    color: #444;
}

.cta-section {
    background: linear-gradient(135deg, #d32f2f, #0d47a1);
    color: white;
    text-align: center;
    padding: 70px 20px;
    margin-top: 70px;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2.2rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }
}