.services-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.services-intro {
    text-align: center;
    margin-bottom: 60px;
}

.services-intro h2 {
    font-family: var(--accent-font-family);
    font-style: var(--accent-font-style);
    font-weight: var(--accent-font-weight);
    text-transform: var(--accent-text-transform);
    letter-spacing: var(--accent-letter-spacing);
    font-size: 2.5rem;
    color: #0f1f0f;
    margin-bottom: 20px;
}

.services-intro p {
    font-size: 1.2rem;
    color: #4a5a4a;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.service-category {
    background: #f9fbf9;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 8px 25px rgba(15, 31, 15, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(15, 31, 15, 0.15);
}

.service-category h3 {
    font-size: 1.6rem;
    color: #0f1f0f;
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

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

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e8f0e8;
}

.service-item:last-child {
    border-bottom: none;
}

.service-name {
    font-size: 1.1rem;
    color: #2a3a2a;
    font-weight: 500;
}

.service-price {
    font-size: 1rem;
    color: #4b7a4b;
    font-weight: 600;
}

.service-description {
    font-size: 0.9rem;
    color: #6a7a6a;
    font-style: italic;
    margin-top: 5px;
}

.pricing-note {
    text-align: center;
    margin: 40px 0;
    padding: 20px;
    background: #f4f9f4;
    border-radius: 8px;
    border-left: 4px solid #4b7a4b;
}

.pricing-note p {
    font-size: 1rem;
    color: #4a5a4a;
    margin: 0;
}

