.pg-page {
    background: #f6f8f7;
    color: #1f2828;
}

.pg-section {
    padding: 72px 0;
}

.pg-section-title {
    margin: 0 0 14px;
    font-family: var(--font-heading);
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.1;
    color: #122d24;
}

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

.pg-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pg-list li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 8px;
    line-height: 1.55;
}

.pg-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: var(--color-primary);
}

.pg-card {
    padding: 22px;
    border: 1px solid #d8e2de;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(20, 32, 56, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pg-card h3 {
    margin: 0 0 8px;
    font-size: 1.1rem;
    line-height: 1.35;
    color: #163a2e;
}

.pg-card p {
    margin: 0;
    color: #4f5d58;
    line-height: 1.6;
}

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

@media (max-width: 991px) {
    .pg-section {
        padding: 56px 0;
    }
}
