.policy-page {
    --policy-gold: #c99b52;
    --policy-ink: #1d1a18;
    --policy-muted: #6d6864;
    --policy-cream: #f8f5ef;
    background: #fff;
}

.policy-content {
    padding: 100px 0 120px;
}

.policy-intro {
    position: relative;
    margin-bottom: 54px;
    padding: 34px 38px 34px 44px;
    overflow: hidden;
    border: 1px solid #ece5da;
    border-radius: 16px;
    background: var(--policy-cream);
}

.policy-intro::before {
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: var(--policy-gold);
    content: "";
}

.policy-intro-label,
.policy-contact-label {
    display: block;
    margin-bottom: 10px;
    color: #9a6b25;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.policy-intro p {
    max-width: 950px;
    margin: 0;
    color: var(--policy-muted);
    font-size: 17px;
    line-height: 1.85;
}

.policy-sidebar {
    position: sticky;
    top: 120px;
    padding: 28px;
    border: 1px solid #eee8df;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(33, 27, 20, .07);
}

.policy-sidebar-title {
    margin-bottom: 18px;
    color: var(--policy-ink);
    font-size: 20px;
}

.policy-sidebar ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.policy-sidebar a {
    display: block;
    padding: 10px 12px;
    border-left: 2px solid #e8e0d5;
    color: var(--policy-muted);
    font-size: 14px;
    line-height: 1.4;
    transition: .25s ease;
}

.policy-sidebar a:hover {
    border-left-color: var(--policy-gold);
    color: #9a6b25;
    padding-left: 16px;
}

.policy-section {
    scroll-margin-top: 120px;
    margin-bottom: 34px;
    padding: 34px 38px;
    border: 1px solid #eee8df;
    border-radius: 14px;
    background: #fff;
    transition: box-shadow .25s ease, transform .25s ease;
}

.policy-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 50px rgba(33, 27, 20, .07);
}

.policy-section-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.policy-section-number {
    display: inline-flex;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--policy-ink);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.policy-section h2 {
    margin: 0;
    color: var(--policy-ink);
    font-size: 26px;
    font-weight: 500;
}

.policy-section p,
.policy-section li {
    color: var(--policy-muted);
    font-size: 16px;
    line-height: 1.8;
}

.policy-section p:last-child,
.policy-section ul:last-child {
    margin-bottom: 0;
}

.policy-section ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.policy-section li {
    position: relative;
    padding-left: 25px;
}

.policy-section li::before {
    position: absolute;
    top: 12px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--policy-gold);
    content: "";
}

.policy-section strong {
    color: var(--policy-ink);
    font-weight: 600;
}

.policy-contact {
    margin-top: 46px;
    padding: 38px;
    border-radius: 16px;
    background: var(--policy-ink);
    color: #fff;
}

.policy-contact h2 {
    margin-bottom: 10px;
    color: #fff;
    font-size: 28px;
    font-weight: 500;
}

.policy-contact p {
    margin-bottom: 22px;
    color: rgba(255, 255, 255, .72);
}

.policy-contact a {
    color: #f0c77f;
    font-weight: 600;
}

@media (max-width: 991px) {
    .policy-content { padding: 75px 0 90px; }
    .policy-sidebar { position: static; margin-bottom: 30px; }
}

@media (max-width: 575px) {
    .policy-content { padding: 55px 0 70px; }
    .policy-intro, .policy-section, .policy-contact { padding: 25px 22px; }
    .policy-section-heading { align-items: flex-start; }
    .policy-section h2 { font-size: 22px; }
}
