:root {
    --dpo-red: #A12124;
    --dpo-dark-red: #8f171b;
    --dpo-bright-red: #d51d24;
    --dpo-bg: #fbf1df;
    --dpo-white: #ffffff;
    --dpo-light-gray: #efefef;
    --dpo-black: #222222;
    --dpo-text-muted: #506b78;

    --dpo-subheader-top: 124px;
    --dpo-subheader-height: 54px;
}

/* ================================
   DATA PRIVACY POLICY PAGE
================================ */

body {
    font-family: 'Century Gothic', 'Poppins', Arial, sans-serif;
}

.dpo-policy-page {
    background: var(--dpo-beige) !important;
    color: var(--dpo-black);
    min-height: 100vh;
    font-family: 'Century Gothic', 'Poppins', Arial, sans-serif;
}

.dpo-policy-main {
    background: var(--dpo-beige) !important;
    padding: 18px 0 70px;
}

.dpo-policy-container {
    max-width: 1240px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 32px !important;
    box-sizing: border-box !important;
}

.dpo-policy-section {
    max-width: 1180px;
    margin: 0 auto;
}

.dpo-policy-heading,
.dpo-manual-heading {
    width: 100%;
    background: linear-gradient(to bottom, #d7252e, var(--dpo-red));
    color: var(--dpo-white);
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    padding: 10px 18px;
    margin: 0 0 18px;
    text-transform: uppercase;
    box-sizing: border-box;
}

.dpo-policy-card {
    background: var(--dpo-white);
    padding: 28px 26px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.13);
    margin-bottom: 22px;
    color: var(--dpo-black);
    font-size: 17px;
    line-height: 1.55;
    text-align: justify;
}

.dpo-policy-card p {
    margin: 0;
}

.dpo-policy-divider {
    max-width: 1180px;
    border: 0;
    border-top: 1px solid #777777;
    margin: 24px auto;
}

.dpo-manual-box {
    width: 100%;
    background: #e8e8e8;
    padding: 22px 26px;
    box-sizing: border-box;
}

.dpo-manual-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 58px;
    gap: 18px 38px;
    align-items: stretch;
}

.dpo-manual-btn {
    width: 100%;
    height: 58px;
    min-height: 58px;
    max-height: 58px;

    margin: 0;
    padding: 8px 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #858681;
    color: #ffffff !important;

    border: 0;
    border-radius: 7px;

    text-align: center;
    text-decoration: none !important;

    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;

    overflow: hidden;
    overflow-wrap: anywhere;

    box-sizing: border-box;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.dpo-manual-btn:hover {
    background: var(--dpo-red);
    color: #ffffff !important;
    transform: translateY(-2px);
}

.dpo-manual-btn.is-disabled {
    pointer-events: none;
    opacity: 0.55;
}

.dpo-manual-empty {
    padding: 36px 20px;
    text-align: center;
    color: #777777;
    font-size: 15px;
}


/* ================================
   RESPONSIVE
================================ */

@media screen and (max-width: 991px) {
    

    .dpo-policy-container {
        max-width: 100% !important;
        padding: 0 24px !important;
    }

    .dpo-policy-section,
    .dpo-policy-divider {
        max-width: 100% !important;
    }

    .dpo-manual-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 58px;
        gap: 16px 22px;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --dpo-subheader-top: 104px;
    }

    .dpo-policy-hero {
        height: 120px !important;
        min-height: 120px !important;
    }

    .dpo-policy-main {
        padding: 24px 0 44px;
    }

    .dpo-policy-container {
        padding: 0 18px !important;
    }

    .dpo-policy-heading,
    .dpo-manual-heading {
        font-size: 21px;
        padding: 9px 14px;
    }

    .dpo-policy-card {
        padding: 22px 18px;
        font-size: 15px;
    }

    .dpo-manual-box {
        padding: 18px;
    }

    .dpo-manual-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }


}

@media screen and (max-width: 575px) {
    :root {
        --dpo-subheader-top: 94px;
    }

    .dpo-policy-container {
        padding: 0 12px !important;
    }

    .dpo-policy-hero {
        height: 100px !important;
        min-height: 100px !important;
    }

    .dpo-policy-heading,
    .dpo-manual-heading {
        font-size: 18px;
    }

    .dpo-policy-card {
        padding: 18px 15px;
        font-size: 14px;
    }

    .dpo-manual-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 58px;
        gap: 12px;
    }

    .dpo-manual-btn {
        height: 58px;
        min-height: 58px;
        max-height: 58px;
        font-size: 13px;
    }

}