.services-hero {
    padding: calc(var(--header-height) + 4rem) 0 4rem;
    background: linear-gradient(rgba(12, 38, 2, 0.8), rgba(12, 38, 2, 0.8)), url('/static/images/services-hero.png');
    color: white;
    /* padding: 6rem 0; */
    text-align: center;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

.service-detail {
    padding: 5rem 0;
}

.service-detail-alt {
    background: linear-gradient(rgba(12, 38, 2, 0.8), rgba(12, 38, 2, 0.8)), url('/static/images/services-hero.png');
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-text p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-text ul {
    list-style-type: none;
    padding: 0;
}

.service-text ul li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-text ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.pricing-info {
    background: var(--dark-accent);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.pricing-info h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.pricing-info p {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.pricing-info p:last-child {
    margin-bottom: 0;
}

.cta-section {
    background: linear-gradient(rgba(12, 38, 2, 0.8), rgba(12, 38, 2, 0.8)), url('/static/images/services-hero.png');
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

@media (max-width: 768px) {
    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-image {
        order: -1;
    }

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

    .service-text h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }
} 