.services-hero {
    background: #f5f1ed;
    padding: 6rem 2rem;
    text-align: center;
}

.services-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.services-hero p {
    font-size: 1.3rem;
    color: #666;
}

.services-detailed {
    padding: 3rem 2rem;
}

.service-detail-item {
    max-width: 1400px;
    margin: 0 auto 5rem;
    display: flex;
    gap: 4rem;
    align-items: stretch;
}

.service-detail-item.reverse {
    flex-direction: row-reverse;
}

.service-detail-visual,
.service-detail-content {
    flex: 1;
}

.service-detail-visual {
    border-radius: 4px;
    overflow: hidden;
    min-height: 500px;
}

.service-detail-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.service-detail-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.service-detail-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
    line-height: 1.6;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a7c59;
    font-weight: 700;
}

.service-pricing-box {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 1rem;
    color: #666;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 600;
    color: #4a7c59;
}

@media (max-width: 968px) {
    .service-detail-item,
    .service-detail-item.reverse {
        flex-direction: column;
    }

    .services-hero h1 {
        font-size: 2.5rem;
    }
}