/* ==================================================
   UL FOUNDATION — RESPONSIBLE DISCLOSURE POLICY
   ================================================== */


/* ---------- Manrope ---------- */

@font-face {
    font-family: "Manrope";
    src: url("fonts/manrope-v20-latin-regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("fonts/manrope-v20-latin-500.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("fonts/manrope-v20-latin-600.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("fonts/manrope-v20-latin-700.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


/* ---------- Page ---------- */

.security-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    font-family: "Manrope", sans-serif;
    color: #222;
    line-height: 1.6;
}

.security-page h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 24px;
}
/* Security Image + Introduction */

.security-intro {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 40px;
    align-items: start;
}

.security-badge {
    width: 220px;
}

.security-badge-img {
    display: block;
    width: 220px;
    height: auto;
}

.intro-text {
    font-size: 1.05rem;
    line-height: 1.6;
}

.intro-text p {
    margin: 0 0 24px 0;
}

.security-accent {
    display: block;
    width: 36px;
    height: 36px;
    background: #f7941d;
    border-radius: 50%;
    margin-top: 20px;
    margin-left: auto;
}
/* ---------- Policy Content ---------- */

.policy-card {
    clear: both;
    margin-top: 40px;
    padding: 40px;
    border-radius: 12px;
    background: #f7f3ea;
}

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

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 16px;
}

.policy-text {
    font-size: 1rem;
    line-height: 1.7;
}


/* ---------- Lists ---------- */

.policy-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.policy-section li {
    margin-bottom: 10px;
}


/* ---------- Links ---------- */

.policy-section a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.policy-section a:hover {
    opacity: 0.75;
}


/* ---------- Footer ---------- */

.page-footer {
    clear: both;
    margin-top: 60px;
    padding-top: 24px;
    text-align: center;
    font-size: 0.9rem;
}

.copyright {
    margin: 0;
}


/* ---------- Mobile ---------- */

@media (max-width: 768px) {

    .security-page {
        padding: 24px;
    }

    .security-page h1 {
        font-size: 2rem;
    }

    .security-badge {
        float: none;
        width: 180px;
        margin: 0 auto 24px;
    }

    .intro-text {
        font-size: 1rem;
    }

    .policy-card {
        padding: 24px;
    }
}