.pg-hero {
    color: #f4f7f5;
    background:
        linear-gradient(rgba(184, 243, 208, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184, 243, 208, 0.05) 1px, transparent 1px),
        linear-gradient(135deg, var(--color-bg-dark) 0%, #0a5b41 100%);
    border-bottom: 1px solid rgba(184, 243, 208, 0.26);
}

.pg-title {
    margin: 0 0 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.06;
}

.pg-service-card {
    padding: 24px;
    border: 1px solid #d6e2dc;
    border-radius: 10px;
    background: #eef3f1;
    box-shadow: 0 8px 24px rgba(20, 32, 56, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pg-service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(20, 32, 56, 0.1);
}

.pg-service-title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(1.15rem, 1.7vw, 1.55rem);
    line-height: 1.35;
    color: #15392d;
}

.pg-service-more {
    margin-top: auto;
    width: 44px;
    min-width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid #1f5a46;
    color: #1f5a46;
    background: #f9fbfa;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 0 14px;
    overflow: hidden;
    white-space: nowrap;
    text-decoration: none;
    transition: width 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.pg-service-more-plus {
    font-size: 1.75rem;
    line-height: 1;
}

.pg-service-more-text {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.15s ease;
}

.pg-service-more:hover,
.pg-service-more:focus {
    width: 132px;
    color: #0b6f4a;
    border-color: #0b6f4a;
}

.pg-service-more:hover .pg-service-more-text,
.pg-service-more:focus .pg-service-more-text {
    opacity: 1;
}

.pg-text-2 {
    margin: 0 0 4rem 0;
    font-size: 1.5rem;
    line-height: 1.7;
    color: #3f4f49;
}

@media (max-width: 767.98px) {
    .pg-text-2 {
        font-size: 1.3rem;
        line-height: 1.5;
    }
}
