/* Pricing Policy & Schedule of Charges */

.pricing-policy-page {
    --legal-navy: var(--page-text);
    --legal-paper: var(--page-bg);
    --legal-muted: rgba(var(--ink), 0.68);
    --legal-border: rgba(var(--ink), 0.1);
    background: var(--surface);
}

.pricing-policy-page .legal-block {
    box-shadow: 0 14px 32px rgba(24, 37, 68, 0.05);
}

.pricing-rate-updates {
    display: grid;
    gap: 0.75rem;
}

.pricing-rate-updates .legal-text {
    position: relative;
    margin: 0;
    padding: 1rem 1rem 1rem 1.25rem;
    border: 1px solid var(--legal-border);
    border-radius: 10px;
    background: var(--surface);
}

.pricing-rate-updates .legal-text::before {
    content: "";
    position: absolute;
    top: 1rem;
    bottom: 1rem;
    left: 0;
    width: 3px;
    border-radius: 999px;
    background: var(--legal-orange);
}

.pricing-schedule-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.pricing-schedule-block .legal-block-title {
    margin-bottom: 0.75rem;
}

.pricing-download-button {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.75rem 1.2rem;
    border: 1px solid var(--legal-orange);
    border-radius: 9px;
    background: var(--legal-orange);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.pricing-download-button:hover,
.pricing-download-button:focus-visible {
    border-color: #ae1b01;
    background: #ae1b01;
    color: #fff;
    transform: translateY(-1px);
}

@media (max-width: 640px) {
    .pricing-schedule-block {
        align-items: stretch;
        flex-direction: column;
    }

    .pricing-download-button {
        width: 100%;
    }
}
