/* =========================
   POLICIES PAGE
========================= */

.policies-page {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 180px 7% 100px;
    background: black;
    color: white;
    display: flex;
    justify-content: center;
}

.policies-page-container {
    width: 100%;
    max-width: 800px;
}

.policies-page-container h1 {
    font-size: 80px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -3px;
    margin-bottom: 60px;
    color: #ffffff;
    text-align: center;
}

.policy-section {
    margin-bottom: 50px;
}

.policy-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.policy-section p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 15px;
}

/* RESPONSIVE */

@media screen and (max-width: 991px) {
    .policies-page {
        padding: 150px 6% 80px;
    }
    .policies-page-container h1 {
        font-size: 60px;
        margin-bottom: 40px;
    }
    .policy-section h2 {
        font-size: 28px;
    }
    .policy-section p {
        font-size: 16px;
    }
}

@media screen and (max-width: 767px) {
    .policies-page {
        padding: 120px 24px 70px;
    }
    .policies-page-container h1 {
        font-size: 48px;
        margin-bottom: 30px;
        letter-spacing: -2px;
    }
    .policy-section h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }
}
