/* GLOBAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    background: #f5f8ff;
    color: #1f2937;
}

/* HEADER */
.policy-header {
    width: 100%;
    padding: 16px 60px;
    background: #ffffffdd;
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 20;
}

.policy-header img {
    height: 60px;
}

/* HERO BANNER */
.policy-banner {
    width: 100%;
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(135deg, #3f55a8, #68a8ff);
    color: white;
    margin-bottom: 40px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.policy-banner h1 {
    font-size: 38px;
    font-weight: 700;
}

/* MAIN CONTENT BOX */
.policy-container {
    max-width: 900px;
    margin: auto;
    background: rgba(255,255,255,0.7);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 22px rgba(0,0,0,0.12);
    animation: fadeIn 0.8s ease-out forwards;
    transform: translateY(25px);
}

/* CONTENT TEXT */
.policy-container h2 {
    margin-top: 26px;
    font-size: 24px;
    color: #24345c;
}

.policy-container p {
    font-size: 16px;
    line-height: 1.7;
    color: #3b4656;
    margin-top: 10px;
}

/* BACK BUTTON */
.back-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 22px;
    background: #3f55a8;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-size: 15px;
    transition: 0.3s ease;
}

.back-btn:hover {
    background: #2d3f7d;
    transform: translateY(-2px);
}

/* FOOTER */
.policy-footer {
    text-align: center;
    margin-top: 60px;
    padding: 25px 0;
    background: #111a2d;
    color: #aaa;
    font-size: 14px;
}

/* ANIMATIONS */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .policy-header {
        padding: 16px 20px;
    }

    .policy-container {
        margin: 10px;
        padding: 25px;
    }

    .policy-banner h1 {
        font-size: 30px;
    }
}


.policy-container ul {
    list-style: none;      /* Removes dots */
    padding-left: 0;       /* Removes left spacing */
}

.policy-container li {
    margin-bottom: 6px;    /* Optional: neat spacing between lines */
}

