/* ===== PAGE HEADER ===== */
.page-header {
    margin-top: 79px;
    padding: 4.5rem 2rem 3.5rem;
    text-align: center;
    background: linear-gradient(180deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    border-bottom: 1px solid var(--border-gray);
}

.page-header .section-subtitle {
    margin-bottom: 0;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 600px) {
    .page-header {
        margin-top: 70px;
        padding: 3rem 1.25rem 2.5rem;
    }
}

/* ===== POLICY PAGE SECTIONS ===== */
.policy-section {
    padding: 4.5rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.policy-section + .policy-section {
    padding-top: 0;
}

.policy-card {
    background: var(--secondary-dark);
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    padding: 2.8rem;
}

.policy-updated {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-bottom: 2rem;
    text-align: center;
}

.policy-block {
    margin-bottom: 2.4rem;
}

.policy-block:last-child {
    margin-bottom: 0;
}

.policy-block h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-white);
}

.policy-block h3 .num {
    color: var(--accent-orange);
    margin-right: 0.5rem;
}

.policy-block p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 0.8rem;
}

.policy-block ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.policy-block ul li {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    padding-left: 1.4rem;
    position: relative;
}

.policy-block ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: 700;
}

.policy-divider {
    border: none;
    border-top: 1px solid var(--border-gray);
    margin: 2.5rem 0;
}

/* ===== HIGHLIGHT / WARNING CALLOUT ===== */
.policy-callout {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid var(--accent-orange);
    border-radius: 8px;
    padding: 1.1rem 1.3rem;
    margin: 1rem 0 0;
}

.policy-callout .icon {
    font-size: 1.3rem;
    line-height: 1;
}

.policy-callout p {
    color: var(--text-white);
    font-size: 0.92rem;
    line-height: 1.65;
    margin: 0;
}

.policy-callout strong {
    color: var(--accent-orange);
}

/* ===== GYM RULES GRID (reuses .feature-card) ===== */
.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

@media (max-width: 600px) {
    .policy-section {
        padding: 3rem 1.25rem;
    }

    .policy-section + .policy-section {
        padding-top: 0;
    }

    .policy-card {
        padding: 1.8rem 1.4rem;
    }
}