
.rg-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 260px 20px 120px;
}


.rg-hero {
    padding: 70px 30px 55px;
    border-radius: 24px;

    background: var(--bacgraund-linear-green);
    border: var(--shadow);
    text-align: left;
}

.rg-breadcrumbs {
    font-size: 0.95rem;
    color: #6a6f6c;
    margin-bottom: 18px;
}

.rg-breadcrumbs a {
    color: #183a2a;
    text-decoration: none;
    font-weight: 600;
}

.rg-breadcrumbs a:hover {
    text-decoration: underline;
}

.rg-hero h1 {
    font-size: 2.65rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.6px;
    margin: 0 0 18px;
    color: var(--brand-dark);

}

.rg-lead {
    max-width: 820px;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.7;
    color: var(--accent);
    margin: 0 0 28px;
}


.rg-quicklinks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.rg-quicklinks a {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--bacgraund-linear-green);
    border: var(--shadow);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent);
    transition: 0.25s ease;
}

.rg-quicklinks a:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}


.rg-content {
    max-width: 900px;
    margin: 70px auto 0;
}

.rg-section + .rg-section {
    margin-top: 48px;
}

.rg-section {
    scroll-margin-top: 185px;
}

.rg-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 0 14px;
    color: var(--brand-dark);

    letter-spacing: -0.2px;
}

.rg-content .rg-section h3, h4{
    font-weight: 800;
}

.rg-content p {
    font-size: 1.06rem;
    font-weight: 650;
    line-height: 1.85;
    color: #2f4f3e;
    margin: 0 0 16px;
}


.rg-faq {
    background: var(--bacgraund-linear-green);
    border: var(--shadow);
    border-radius: 16px;
    padding: 14px 16px;

    margin-top: 14px;
}

.rg-faq summary {
    cursor: pointer;
    font-weight: 650;
    color: var(--accent);
    list-style: none;
}

.rg-faq summary::-webkit-details-marker {
    display: none;
}

.rg-faq__body {
    padding-top: 12px;
    color: #2f4f3e;
}

/* RELATED */
.rg-related {
    margin-top: 90px;
    padding-top: 50px;
    border-top: 1px solid #eef2f0;
}

.rg-related h2 {
    text-align: center;
    font-size: 1.7rem;
    margin-bottom: 28px;
    color: var(--brand-dark);
}

.rg-related__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;

}

.rg-related__card {
    display: block;
    padding: 26px 24px;
    border-radius: 18px;
    background: var(--bacgraund-linear-green);
    border: var(--shadow);
    text-decoration: none;
    transition: 0.3s cubic-bezier(.16, .8, .3, 1);
}

.rg-related__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.08);
}

.rg-related__card h3 {
    margin: 0 0 8px;
    font-size: 1.25rem;
    color: var(--brand-dark);
}

.rg-related__card p {
    margin: 0;
    font-weight: 700;
    color: var(--accent);
}



.rg-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 15px;
}

.rg-table thead {
    background-color: #f5f7fa;
}

.rg-table th {
    text-align: left;
    padding: 12px;
    border-bottom: 2px solid #e3e7ed;
    font-weight: 600;
}

.rg-table td {
    padding: 12px;
    border-bottom: 1px solid #e8ecf1;
}

.rg-table tbody tr:nth-child(even) {
    background-color: #fafbfd;
}

.rg-table tbody tr:hover {
    background-color: #f1f5f9;
}


@media (max-width: 600px) {
    .rg-hero {
        padding: 55px 18px 40px;
        border-radius: 18px;
    }

    .rg-hero h1 {
        font-size: 2.05rem;
    }

    .rg-content {
        margin-top: 45px;
    }
}