/* ================= POLICY CONTENT ================= */
        .policy-wrapper {
            padding: 60px 20px;
        }

        .policy-content {
            max-width: 900px;
            margin: auto;
        }

        .policy-content h1 {
            font-size: 36px;
            margin-bottom: 30px;
        }

        .policy-content h2 {
            font-size: 22px;
            margin-top: 40px;
            margin-bottom: 12px;
        }

        .policy-content p {
            font-size: 15px;
            color: #cfd6e1;
        }

        .policy-content ul {
            margin-top: 10px;
            margin-left: 20px;
        }

        .policy-content ul li {
            margin-bottom: 8px;
            font-size: 15px;
        }

       

/* ================= WHATSAPP BUTTON ================= */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: #fff;
    font-size: 22px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
}

@media (max-width: 600px) {
    .policy-content h1 {
        font-size: 28px;
    }

    .policy-content h2 {
        font-size: 19px;
    }

    .policy-content p,
    .policy-content li {
        font-size: 14px;
        margin-top: 3rem;
    }
}

