.services-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--color-border, #e5e5e5);
}

.services-hero-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.services-hero-content h1 {
    font-size: 2rem;
    margin: 0;
    color: var(--color-text, #333);
}

.services-hero-content .subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted, #666);
    margin: 0;
}

.services-grid-section {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.services-grid-section #services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    width: 100%;
    justify-content: center;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    width: 360px;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.service-image {
    height: 180px;
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image-placeholder i {
    font-size: 48px;
    color: #999;
}

.service-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    margin: 0 0 10px;
    font-size: 1.4rem;
    color: #333;
}

.service-description {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.service-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.service-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
    color: #444;
    font-size: 0.9rem;
}

.service-benefits i {
    color: #4CAF50;
    margin-right: 8px;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    margin-bottom: 0.25rem;
    padding-top: 10px;
    font-weight: 600;
    color: #333;
}

.service-detail-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.service-detail-hero {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border, #e5e5e5);
}

.service-detail-hero h1 {
    margin: 0 0 0.5rem;
    font-size: 2rem;
    color: var(--color-text, #333);
}

.service-detail-hero .subtitle {
    margin: 0;
    font-size: 1.1rem;
    color: var(--color-text-muted, #666);
}

.service-detail-image {
    width: 100%;
    height: 220px;
    background: #f4f4f4;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail-image .service-image-placeholder i {
    font-size: 64px;
    color: #999;
}

.service-detail-content h2,
.service-detail-content h3 {
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--color-text, #333);
}

.service-detail-content p {
    line-height: 1.6;
    color: var(--color-text, #444);
}

.service-detail-content .service-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.service-detail-content .service-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: var(--color-text, #444);
}

.service-detail-content .service-benefits i {
    margin-right: 0.5rem;
    color: var(--color-primary);
}

.service-meta {
    display: flex;
    gap: 1.5rem;
    margin: 1.5rem 0;
    font-weight: 600;
    color: var(--color-text, #333);
}

.service-detail-content .button-primary {
    margin-top: 1rem;
}

.back-link {
    margin-top: 2rem;
}
