/* ================= RESET & BASICS ================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #f4f6fb;
    color: #222;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ================= POLICY CONTAINER ================= */
.policy-container {
    width: 100%;
    max-width: 900px;
    margin: 50px auto;
    background: #fff;
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.policy-container:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* ================= HEADINGS ================= */
.policy-container h1 {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: #2b2f77;
    margin-bottom: 30px;
}

.policy-container h2 {
    margin-top: 28px;
    font-size: 20px;
    color: #2b2f77;
    border-left: 5px solid #6a11ff; /* fintech accent */
    padding-left: 12px;
}

/* ================= PARAGRAPHS & LISTS ================= */
.policy-container p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-top: 10px;
}

.policy-container ul {
    margin-top: 10px;
    margin-left: 20px;
}

.policy-container ul li {
    margin-bottom: 10px;
    list-style-type: disc;
    color: #555;
}

/* ================= LINKS ================= */
.policy-container a {
    color: #6a11ff;
    text-decoration: none;
    transition: 0.3s;
}

.policy-container a:hover {
    text-decoration: underline;
}

/* ================= BUTTONS ================= */
.policy-container .btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    border-radius: 28px;
    background: linear-gradient(135deg, #6a11ff, #2575fc);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.policy-container .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {
    .policy-container {
        margin: 20px;
        padding: 25px 20px;
        border-radius: 14px;
        box-shadow: 0 5px 18px rgba(0,0,0,0.06);
    }

    .policy-container h1 {
        font-size: 24px;
    }

    .policy-container h2 {
        font-size: 18px;
    }

    .policy-container p {
        font-size: 15px;
    }
}

@media (max-width: 380px) {
    .policy-container {
        margin: 10px;
        padding: 18px 14px;
        border-radius: 12px;
    }

    .policy-container h1 {
        font-size: 19px;
        margin-bottom: 18px;
    }

    .policy-container h2 {
        font-size: 15px;
        margin-top: 18px;
        padding-left: 8px;
        border-left-width: 3px;
    }

    .policy-container p {
        font-size: 13.5px;
        line-height: 1.6;
        margin-top: 8px;
    }
}