﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI',sans-serif;
    background: #f2f4f8;
    color: #333;
}

/* ================= NAVBAR ================= */

.navbar {
    width: 100%;
    background: linear-gradient(90deg,#1d2f8f,#f40076);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.logo-text {
    color: white;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 1px;
}

.menu-section {
    display: flex;
    gap: 15px;
    align-items: center;
}

    .menu-section a {
        color: white;
        text-decoration: none;
        padding: 10px 18px;
        border-radius: 30px;
        transition: 0.3s;
        font-weight: 600;
    }

        .menu-section a:hover {
            background: rgba(255,255,255,0.15);
        }

.login-btn {
    background: white;
    color: #1d2f8f !important;
    font-weight: bold;
}

/* ================= BANNER ================= */

.banner {
    background: linear-gradient(90deg,#1d2f8f,#3248b1);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

    .banner h1 {
        font-size: 42px;
        margin-bottom: 10px;
    }

    .banner p {
        font-size: 18px;
    }

/* ================= CONTAINER ================= */

.container {
    width: 95%;
    max-width: 1200px;
    margin: 30px auto;
}

/* ================= CARD ================= */

.card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.card-header {
    background: linear-gradient(90deg,#1d2f8f,#3248b1);
    color: white;
    padding: 18px 25px;
    font-size: 24px;
    font-weight: 600;
    border-left: 6px solid #f40076;
}

.card-body {
    padding: 25px;
    line-height: 1.9;
    font-size: 17px;
}

/* ================= SERVICE BOX ================= */

.service-box {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 20px;
}

.service {
    background: linear-gradient(135deg,#1d2f8f,#f40076);
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    font-weight: 600;
    transition: 0.3s;
}

    .service:hover {
        transform: translateY(-5px);
    }

/* ================= LIST ================= */

ul {
    margin-left: 20px;
    margin-top: 10px;
}

    ul li {
        margin-bottom: 12px;
    }

/* ================= BUTTON ================= */

.back-btn {
    background: linear-gradient(90deg,#1d2f8f,#f40076);
    color: white;
    padding: 14px 35px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

    .back-btn:hover {
        transform: translateY(-3px);
    }

/* ================= FOOTER ================= */

.footer {
    background: #1d2f8f;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

/* ================= MOBILE ================= */

@media(max-width:900px) {

    .navbar {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .menu-section {
        flex-wrap: wrap;
        justify-content: center;
    }

    .banner h1 {
        font-size: 30px;
    }

    .policy-highlight {
        color: #f40076;
        font-weight: bold;
    }

    .info-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
        gap: 20px;
        margin-top: 15px;
    }

    .info-box {
        background: linear-gradient(135deg,#1d2f8f,#3248b1);
        color: white;
        border-radius: 18px;
        padding: 25px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.12);
    }

        .info-box h3 {
            margin-bottom: 15px;
            font-size: 22px;
            color: #fff;
        }

    .contact-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
        gap: 20px;
    }

    .contact-item {
        background: #fff;
        border-radius: 18px;
        padding: 25px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    }

        .contact-item h4 {
            color: #f40076;
            margin-bottom: 12px;
            font-size: 20px;
        }
}
