/* Services Page Styles */

.services-intro {
    text-align: center;
    padding: 2em;
    max-width: 800px;
    margin: 0 auto 3em auto;
}

.services-intro p {
    font-size: 1.1em;
    color: #666;
    line-height: 1.6;
}

.service-category {
    margin-bottom: 4em;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1em;
    margin-bottom: 1.5em;
    padding: 1.5em 0;
    border-bottom: 1px solid #69a03d;
}

.category-icon {
    font-size: 3em;
    flex-shrink: 0;
}

.category-header h2 {
    margin: 0;
    font-size: 2em;
    color: #333;
}

.services-list {
    margin: 0;
    padding: 0 1em;
    list-style: none;
}

.service-item {
    margin: 0 0 1.5em 1.5em;
    padding-left: 0.5em;
}

.service-item h3 {
    color: #333;
    font-size: 1.4em;
    margin: 0 0 0.8em 0;
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.service-details {
    list-style: none;
    padding: 0;
    margin: 1em 0 0 0;
}

.service-details li {
    padding: 0.5em 0;
    color: #555;
    border-left: 3px solid #69a03d;
    padding-left: 1em;
    margin-bottom: 0.5em;
}

/* CTA Section */
.services-cta {
    text-align: center;
    padding: 4em 2em;
    background-color: #f8f9fa;
    border-radius: 12px;
    margin-top: 3em;
}

.services-cta h2 {
    font-size: 2em;
    color: #333;
    margin-bottom: 1em;
}

.services-cta p {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 2em;
}

/* Responsive */
@media (max-width: 768px) {
    .category-header {
        flex-direction: column;
        text-align: center;
    }

    .category-header h2 {
        font-size: 1.5em;
    }

    .service-item h3 {
        font-size: 1.2em;
    }
}
