*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins', sans-serif;
    background:#f5f5f5;
    color:#1f2937;
}

/* =========================================
   NAVBAR
========================================= */

.navbar{
    width:100%;
    height:75px;
    background:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 50px;
    border-radius:0 0 18px 18px;
    position:relative;
    z-index:100;
    box-shadow:
    0 4px 10px rgba(0,0,0,0.06),
    0 10px 25px rgba(0,0,0,0.04);
}

.nav-left img{
    height:40px;
    object-fit:contain;
}

.logo-link{
    display:flex;
    align-items:center;
}

.logo-link img{
    transition:0.3s ease;
}

.logo-link:hover img{
    opacity:0.8;
    transform:scale(1.02);
}

.nav-right{
    display:flex;
    align-items:center;
    gap:24px;
}

/* NAV LINKS */

.nav-right a{
    text-decoration:none;
    color:#1f3d66;
    font-size:13px;
    font-weight:600;
    transition:0.3s ease;
}

.nav-right a:hover{
    opacity:0.75;
}

/* =========================
   LANGUAGE DROPDOWN
========================= */

.language-dropdown{
    position:relative;
    z-index:9999;
}

.selected-language{
    display:flex;
    align-items:center;
    gap:7px;

    color:#1f3d66;

    font-size:14px;
    font-weight:600;

    cursor:pointer;

    transition:0.3s ease;

    user-select:none;
}

.selected-language:hover{
    opacity:0.75;
}

/* MENU */

.language-menu{
    position:absolute;

    top:42px;
    left:-12px;

    background:white;

    width:150px;

    border-radius:12px;

    padding:8px 0;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.08);

    opacity:0;
    visibility:hidden;

    transform:translateY(10px);

    transition:0.25s ease;

    overflow:hidden;
}

/* ACTIVE */

.language-dropdown.active .language-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* OPTION */

.language-option{
    padding:12px 18px;

    color:#1f3d66;

    font-size:14px;
    font-weight:500;

    cursor:pointer;

    transition:0.25s ease;
}

.language-option:hover{
    background:#f1f5f9;
}

/* NAV BUTTONS */
.register-btn{
    background:#1f3d66;
    color:white !important;
    padding:11px 18px;
    border-radius:5px;
    transition:0.3s ease;
}
.register-btn:hover{
    background:#16314f;
    transform:translateY(-2px);
}
.login-btn-nav{
    border:1px solid #1f3d66;

    padding:11px 18px;

    border-radius:5px;

    transition:0.3s ease;
}

.login-btn-nav:hover{
    background:#1f3d66;
    color:white;
}
/* CONTAINER */
.terms-container{
    max-width:1030px;
    margin:32px auto;
    padding:49px 0px;
    line-height:1.8;
}

/* TITLE */
.terms-container h1{
    font-size:48px;
    font-weight:200;
    margin-bottom:10px;
}

/* EFFECTIVE DATE */
.effective-date{
    margin-bottom:25px;
    font-size:14px;
    color:#374151;
}

/* HEADINGS */
.terms-container h3{
    margin-top:30px;
    margin-bottom:10px;
    font-size:18px;
    font-weight:600;
}

/* PARAGRAPHS */
.terms-container p{
    margin-bottom:10px;
    font-size:17px;
}

/* LIST */
.terms-container ul{
    margin-left:20px;
    margin-bottom:15px;
}

.terms-container li{
    margin-bottom:8px;
    font-size:15px;
}

/* LINKS */
.terms-container a{
    color:#1f3d66;
    text-decoration:underline;
}

/* =========================
   FOOTER
========================= */

.footer{
    background:#ffffff;
    padding:40px 60px;
}

.footer-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.footer h4{
    font-size:12px;
    margin-bottom:12px;
    color:#111827;
    font-weight:700;
}

/* CENTER */

.footer-center{
    text-align:center;
}

.footer-center img{
    height:42px;
    margin-bottom:18px;
}

/* FOOTER LINKS */

.footer-links{
    display:flex;
    justify-content:center;
    gap:18px;
    margin-bottom:12px;
}

.footer-links a{
    text-decoration:none;
    color:#111827;
    font-size:12px;
    font-weight:600;
    transition:0.3s ease;
}

.footer-links a:hover{
    color:#1f3d66;
}

.footer-center p{
    font-size:12px;
    color:#6b7280;
}
/* =========================
   ICONS
========================= */

.social-icons,
.contact-icons{
    display:flex;
    gap:14px;
}

.social-icons img,
.contact-icons img{
    width:22px;
    height:22px;
    object-fit:contain;
    cursor:pointer;
    transition:0.3s ease;
}

.social-icons img:hover,
.contact-icons img:hover{
    transform:translateY(-3px) scale(1.08);
    opacity:0.8;
}

/* =========================
   RESPONSIVE (mobile / tablet)
========================= */
@media (max-width: 768px) {
    .navbar {
        height: auto;
        flex-direction: column;
        gap: 12px;
        padding: 14px 18px;
        border-radius: 0 0 14px 14px;
    }
    .nav-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    .terms-container {
        padding: 32px 18px;
        margin: 16px auto;
    }
    .terms-container h1 {
        font-size: 34px;
    }
    .footer {
        padding: 32px 22px;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 28px;
        text-align: center;
    }
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    .social-icons,
    .contact-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .navbar { padding: 12px 14px; }
    .nav-right { gap: 12px; }
    .nav-right a,
    .selected-language { font-size: 12px; }
    .terms-container { padding: 24px 14px; }
    .terms-container h1 { font-size: 28px; }
    .footer { padding: 26px 16px; }
}
