/* ---------- POLICY PAGE BASE ---------- */
.policy-page {
    padding: 60px 0;
    max-width: 950px;
    margin: auto;
    color: #333;
    font-family: "Inter", "Roboto", sans-serif;
}

/* ---------- HEADER ---------- */
.policy-page h1 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
    color: #222;
    letter-spacing: -0.5px;
}

/* ---------- SECTIONS ---------- */
.policy-section {
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 14px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.policy-section:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* ---------- SUB HEADINGS ---------- */
.policy-page h2 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #111;
    font-weight: 600;
}

/* ---------- TEXT ---------- */
.policy-page p,
.policy-page ul {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 14px;
}

.policy-page ul {
    padding-left: 20px;
}

.policy-page ul li {
    margin-bottom: 8px;
}

/* ---------- LINKS IN FOOTER ---------- */
.footer-links a {
    text-decoration: none;
    margin: 0 6px;
    color: #ffffff;
    font-weight: 500;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* ---------- ADDRESS TEXT ---------- */
.footer-address {
    font-size: 15px;
    margin-top: 8px;
    line-height: 1.5;
    color: #ddd;
}

/* ---------- MOBILE RESPONSIVE ---------- */
@media (max-width: 768px) {
    .policy-page h1 {
        font-size: 28px;
    }

    .policy-section {
        padding: 20px;
        margin-bottom: 18px;
    }

    .policy-page h2 {
        font-size: 20px;
    }

    .policy-page p,
    .policy-page ul {
        font-size: 15px;
    }
}