/* New Detailed Services Section */
#services-details {
    background-color: #f4f4f4;
    padding: 30px 0;
}

.services-details-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1em;
}

.services-details-header h2 {
    text-align: center;
    font-size: 36px;
    color: #1E3A61;
    margin-bottom: 30px;
}

.services-details-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5em;
}

.service-category {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1.5em;
    transition: all 0.3s ease-in-out;
}

.service-category:hover {
    /* transform: scale(1.02); */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.service-category h3 {
    color: #1E3A61;
    margin-bottom: 1em;
    font-size: 24px;
    text-align: center;
}

.service-category ul {
    list-style: none;
    padding: 0;
}

.service-category ul li {
    padding: 0.5em 0;
    border-bottom: 1px solid #ddd;
    font-size: 1em;
    color: #555;
}

.service-category ul li:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .services-details-header h2 {
        font-size: 24px;
    }
    .service-category h3 {
        font-size: 18px;
    }
    .services-details-content {
        grid-template-columns: 1fr;
    }
}
