/*--------------------------------------------------------------
# Services Page Specific Styles
--------------------------------------------------------------*/

/* Page Hero (Redundant if Critical CSS covers it, but safe to keep) */
.page-hero {
    padding-top: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #efefef;
}

/* Service Card Styling */
.service-card {
    background-color: #ffffff; /* Use pure white for cards */
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.07);
}

.service-card .icon-container {
    text-align: left;
}

.service-card .icon-list-font {
    margin-right: 0;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card h3 {
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.service-card p {
    color: #6c757d; /* Bootstrap text-muted */
    flex-grow: 1; /* Make paragraphs fill space */
}

/* CTA Section */
.cta-section {
    border-bottom: none; /* Remove bottom border from final section */
}