/* =============================================
   POLICY PAGE STYLES - Veg N Chaat
   ============================================= */

.policy-page {
    background-color: var(--bg-color);
    padding-top: var(--header-height);
}

.policy-page main {
    position: relative;
    z-index: 2;
    background-color: var(--bg-color);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
    min-height: 80vh;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 24px;
}

.policy-header {
    margin-bottom: 60px;
    text-align: center;
}

.policy-header h1 {
    font-size: clamp(48px, 8vw, 120px);
    text-transform: uppercase;
    line-height: 0.9;
    margin-bottom: 20px;
}

.policy-header p {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.policy-text {
    line-height: 1.8;
    color: var(--text-color);
}

.policy-text h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    text-transform: uppercase;
}

.policy-text p {
    margin-bottom: 20px;
    font-size: 16px;
}

.policy-text ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.policy-text li {
    margin-bottom: 10px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .policy-content {
        padding: 60px 20px;
    }
    
    .policy-header h1 {
        font-size: 60px;
    }
}
