/* Shared styling for Important Links pages (Policy, Terms, Help, Sitemap) */

.policy-page {
    background: #f4f6f5;
    padding-bottom: 48px;
}

.policy-hero {
    background: linear-gradient(135deg, #3c5a3c, #2d452d);
    color: #fff;
    padding: 46px 0 34px;
    margin-bottom: -28px;
}

    .policy-hero .policy-eyebrow {
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.78rem;
        opacity: 0.85;
        margin-bottom: 6px;
    }

    .policy-hero h1 {
        font-weight: 700;
        font-size: 1.9rem;
        margin-bottom: 6px;
    }

    .policy-hero p {
        opacity: 0.9;
        margin-bottom: 0;
        font-size: 0.94rem;
    }

.policy-breadcrumb {
    font-size: 0.82rem;
    opacity: 0.85;
    margin-bottom: 12px;
}

    .policy-breadcrumb a {
        color: #d9e8d9;
        text-decoration: none;
    }

        .policy-breadcrumb a:hover {
            text-decoration: underline;
        }

.policy-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(20, 40, 20, 0.08);
    padding: 34px;
    position: relative;
}

.policy-updated {
    font-size: 0.8rem;
    color: #7a7a7a;
    margin-bottom: 22px;
}

.policy-section {
    margin-bottom: 26px;
}

    .policy-section:last-child {
        margin-bottom: 0;
    }

    .policy-section h2 {
        font-size: 1.1rem;
        font-weight: 700;
        color: #2d452d;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .policy-section h2 i {
            color: #f5b301;
            font-size: 0.95rem;
        }

    .policy-section p,
    .policy-section li {
        font-size: 0.92rem;
        color: #3a3a3a;
        line-height: 1.7;
    }

    .policy-section ul {
        padding-left: 20px;
        margin-bottom: 0;
    }

        .policy-section ul li {
            margin-bottom: 6px;
        }

.policy-contact-box {
    background: #f1f6f1;
    border: 1px solid #dcebdc;
    border-radius: 10px;
    padding: 16px 18px;
    font-size: 0.9rem;
    color: #2d452d;
}

    .policy-contact-box a {
        color: #2d452d;
        font-weight: 600;
        text-decoration: none;
    }

        .policy-contact-box a:hover {
            text-decoration: underline;
        }

/* Sitemap specific */
.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 26px;
}

.sitemap-group h2 {
    font-size: 1rem;
    font-weight: 700;
    color: #2d452d;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #eef2ee;
}

.sitemap-group ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

    .sitemap-group ul li {
        margin-bottom: 10px;
    }

    .sitemap-group ul a {
        color: #3a3a3a;
        text-decoration: none;
        font-size: 0.92rem;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: color 0.15s ease;
    }

        .sitemap-group ul a i {
            color: #7fa87f;
            font-size: 0.72rem;
        }

        .sitemap-group ul a:hover {
            color: #2d452d;
        }

/* Help page specific */
.help-search {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

    .help-search input {
        flex: 1;
        border: 1px solid #dcdfdc;
        border-radius: 8px;
        padding: 11px 14px;
        font-size: 0.92rem;
    }

        .help-search input:focus {
            outline: none;
            border-color: #3c5a3c;
            box-shadow: 0 0 0 3px rgba(60, 90, 60, 0.15);
        }

    .help-search button {
        border: none;
        border-radius: 8px;
        padding: 0 20px;
        background: linear-gradient(135deg, #3c5a3c, #2d452d);
        color: #fff;
        font-weight: 600;
        font-size: 0.9rem;
    }

.help-accordion-item {
    border: 1px solid #eef2ee;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
}

.help-accordion-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    cursor: pointer;
    background: #fbfcfb;
    font-weight: 600;
    font-size: 0.92rem;
    color: #2d452d;
}

    .help-accordion-question i {
        transition: transform 0.2s ease;
        color: #7fa87f;
    }

.help-accordion-item.open .help-accordion-question i {
    transform: rotate(180deg);
}

.help-accordion-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    padding: 0 18px;
    font-size: 0.9rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.help-accordion-item.open .help-accordion-answer {
    padding: 4px 18px 16px;
}

.help-category-pill {
    display: inline-block;
    background: #eef2ee;
    color: #2d452d;
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: 20px;
    padding: 4px 12px;
    margin: 0 8px 8px 0;
    cursor: pointer;
}

    .help-category-pill.active {
        background: #3c5a3c;
        color: #fff;
    }
