/* Service detail styles */
.service-areas {
    margin-top: 15px;
    text-align: left;
}

.service-subcategory {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(157, 122, 99, 0.2);
}

.service-subcategory:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-subcategory h4 {
    font-size: 16px;
    color: var(--primary-dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.service-subcategory p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
}

.service-subcategory ul {
    list-style-type: disc;
    padding-left: 18px;
    margin-top: 5px;
}

.service-subcategory ul li {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 3px;
    color: var(--text-dark);
}

.service-card {
    text-align: left;
    padding: 30px 25px;
    height: auto;
}

.service-card .service-icon {
    margin: 0 0 20px 0;
}

.service-card h3 {
    text-align: left;
}

@media (max-width: 768px) {
    .service-card {
        text-align: center;
    }
    
    .service-card .service-icon {
        margin: 0 auto 20px;
    }
    
    .service-card h3 {
        text-align: center;
    }
}