/* =========================================
   UZAYO RETURNS & REFUNDS
========================================= */

.policy-page {
    min-height: 75vh;
    padding: 100px 20px 120px;
    background: #ffffff;
}

.policy-container {
    width: min(1000px, 100%);
    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.policy-header {
    max-width: 820px;
    margin: 0 auto 75px;
    text-align: center;
}

.policy-eyebrow {
    display: inline-block;
    margin-bottom: 18px;

    color: #b89b5e;

    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.policy-header h1 {
    margin: 0 0 22px;

    color: #111111;

    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 5.2rem);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -1.5px;
}

.policy-header p {
    max-width: 720px;
    margin: 0 auto;

    color: #777777;

    font-size: 0.95rem;
    line-height: 1.8;
}


/* =========================================
   POLICY CONTENT
========================================= */

.policy-content {
    width: min(820px, 100%);
    margin: 0 auto;
}


/* =========================================
   POLICY SECTION
========================================= */

.policy-section {
    position: relative;

    padding: 42px 0;

    border-bottom: 1px solid #e9e9e9;
}

.policy-section:first-child {
    border-top: 1px solid #e9e9e9;
}


/* =========================================
   SECTION NUMBER
========================================= */

.policy-number {
    display: block;

    margin-bottom: 13px;

    color: #b89b5e;

    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 2px;
}


/* =========================================
   HEADINGS
========================================= */

.policy-section h2 {
    margin: 0 0 20px;

    color: #111111;

    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 500;
    line-height: 1.2;
}

.policy-section p {
    margin: 0 0 16px;

    color: #666666;

    font-size: 0.88rem;
    line-height: 1.85;
}

.policy-section p:last-child {
    margin-bottom: 0;
}


/* =========================================
   LISTS
========================================= */

.policy-section ul {
    margin: 5px 0 20px;
    padding: 0;

    list-style: none;
}

.policy-section li {
    position: relative;

    margin-bottom: 10px;
    padding-left: 22px;

    color: #666666;

    font-size: 0.88rem;
    line-height: 1.7;
}

.policy-section li::before {
    content: "";

    position: absolute;
    top: 0.75em;
    left: 2px;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #b89b5e;

    transform: translateY(-50%);
}


/* =========================================
   LINKS
========================================= */

.policy-section a {
    color: #111111;
    font-weight: 600;
    text-decoration: none;

    border-bottom: 1px solid #b89b5e;

    transition: color 0.25s ease,
                border-color 0.25s ease;
}

.policy-section a:hover {
    color: #b89b5e;
}


/* =========================================
   CONTACT BOX
========================================= */

.policy-contact {
    margin-top: 25px;
    padding: 25px 28px;

    border: 1px solid #e6e6e6;
    border-radius: 14px;

    background: #fafafa;
}

.policy-contact strong {
    display: block;

    margin-bottom: 10px;

    color: #111111;

    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
}

.policy-contact p {
    margin: 0;
}


/* =========================================
   IMPORTANT POLICY NOTE
========================================= */

.policy-note {
    margin-top: 45px;
    padding: 30px 32px;

    border-left: 3px solid #b89b5e;
    border-radius: 0 14px 14px 0;

    background: #f7f6f3;
}

.policy-note strong {
    display: block;

    margin-bottom: 10px;

    color: #111111;

    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 500;
}

.policy-note p {
    margin: 0;

    color: #666666;

    font-size: 0.82rem;
    line-height: 1.8;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 768px) {

    .policy-page {
        padding: 75px 20px 90px;
    }

    .policy-header {
        margin-bottom: 55px;
    }

    .policy-header h1 {
        font-size: clamp(2.8rem, 10vw, 4.2rem);
    }

    .policy-section {
        padding: 35px 0;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 520px) {

    .policy-page {
        padding: 60px 18px 75px;
    }

    .policy-header {
        margin-bottom: 45px;
    }

    .policy-eyebrow {
        font-size: 0.6rem;
        letter-spacing: 2.4px;
    }

    .policy-header h1 {
        margin-bottom: 18px;

        font-size: 2.8rem;
        line-height: 0.98;
    }

    .policy-header p {
        font-size: 0.85rem;
        line-height: 1.75;
    }

    .policy-section {
        padding: 30px 0;
    }

    .policy-section h2 {
        font-size: 1.4rem;
    }

    .policy-section p,
    .policy-section li {
        font-size: 0.84rem;
    }

    .policy-contact {
        padding: 21px 20px;
    }

    .policy-note {
        padding: 24px 22px;
    }

}