:root { 
    --ink:#0e4a57; 
    --accent:#19a66c; 
    --muted:#5a6c73;
    --light-bg: #f8fafb;
    --border: rgba(14,74,87,.08);
    --shadow: 0 4px 16px rgba(14,74,87,0.08);
}

* { 
    box-sizing:border-box; 
    -webkit-tap-highlight-color: transparent; 
}

html,body { 
    margin:0; 
    background:#fff; 
    color:var(--ink); 
    font-family:'Nunito Sans', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    line-height: 1.7;
    scroll-behavior: smooth;
}

.container { 
    max-width:1180px; 
    margin:0 auto; 
    padding:14px 16px; 
}

/* Header / Nav */
header { 
    position:sticky; 
    top:0; 
    z-index:10; 
    background:#fff; 
    border-bottom:1px solid var(--border);
    box-shadow: 0 2px 8px rgba(14,74,87,0.04);
}

.nav { 
    display:flex; 
    align-items:center; 
    justify-content:space-between; 
    gap:10px; 
    flex-wrap: wrap; 
}

.brand img { 
    width:180px; 
    height:auto; 
    object-fit:contain;
    transition: transform 0.2s ease;
}

.brand img:hover {
    transform: scale(1.02);
}

nav { 
    display:flex; 
    align-items:center; 
    gap:4px;
}

nav a { 
    text-decoration:none; 
    color:var(--ink); 
    font-weight:800; 
    margin-left:14px; 
    padding: 8px 4px;
    border-bottom:2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

nav a:hover { 
    color:var(--accent); 
    border-color:var(--accent); 
}

.login { 
    margin-left:10px; 
    padding:10px 20px; 
    border-radius:12px; 
    border:2px solid var(--ink); 
    background:var(--ink); 
    color:#fff; 
    text-decoration:none; 
    font-weight:900;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(14,74,87,0.2);
}

.login:hover { 
    background:var(--accent); 
    border-color:var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(25,166,108,0.3);
}

/* Dropdown */
.dropdown { 
    position: relative; 
    display: inline-block; 
}

.dropbtn { 
    text-decoration: none; 
    color: var(--ink); 
    font-weight: 800; 
    margin-left: 14px; 
    padding: 8px 4px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.dropbtn:hover {
    color: var(--accent);
}

.dropdown-content {
    display: none; 
    position: absolute; 
    top: 100%; 
    left: 0; 
    background: #fff; 
    min-width: 260px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12); 
    border-radius: 12px; 
    z-index: 20;
    margin-top: 8px;
    border: 1px solid var(--border);
    overflow: hidden;
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-content a { 
    display: block; 
    padding: 14px 18px; 
    text-decoration: none; 
    color: var(--ink); 
    font-weight: 600; 
    border-bottom: 1px solid var(--border);
    transition: all 0.2s ease;
}

.dropdown-content a:last-child { 
    border-bottom: none; 
}

.dropdown-content a:hover { 
    background: var(--accent); 
    color: #fff;
    padding-left: 24px;
}

.dropdown:hover .dropdown-content { 
    display: block; 
}

/* Terms & Conditions Content */
.content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 16px;
}

.content h1 {
    margin: 60px 0 20px;
    font-size: 3rem;
    font-weight: 800;
    color: var(--ink);
    text-align: center;
    background: linear-gradient(135deg, var(--ink) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.content > p {
    margin: 0 0 50px;
    font-size: 1.1rem;
    color: var(--muted);
    text-align: center;
    line-height: 1.8;
}

.content h2 {
    margin: 50px 0 20px;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--ink);
    position: relative;
    text-align: center;
}



.content p {
    margin: 16px 0;
    font-size: 1.05rem;
    color: var(--ink);
    line-height: 1.7;
}

.content ul {
    margin: 20px 0;
    padding: 0 0 0 40px;
    list-style: none;
}

.content ul li {
    margin-bottom: 16px;
    padding-left: 32px;
    position: relative;
    font-size: 1.05rem;
    color: var(--ink);
    line-height: 1.7;
}

.content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
}

.content ul li strong {
    color: var(--accent);
    font-weight: 800;
}

a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s ease;
    border-bottom: 2px solid transparent;
}

a:hover {
    color: var(--ink);
    border-bottom-color: var(--ink);
}

strong {
    color: var(--ink);
    font-weight: 800;
}

/* Footer */
footer { 
    border-top:1px solid var(--border); 
    margin-top:80px;
    background: var(--light-bg);
}

footer p {
    text-align: center;
    padding: 32px 16px;
    margin: 0;
    font-size: 1rem;
    color: var(--muted);
    font-weight: 600;
}

footer a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 800;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

footer a:hover {
    border-bottom-color: var(--accent);
}

/* Responsive Design */
@media (max-width: 768px) {
    body > h1 {
        font-size: 2.2rem;
        margin-top: 40px;
    }
    
    h2 {
        font-size: 1.5rem;
        margin-top: 40px;
    }
    
    h2::before {
        height: 24px;
    }
    
    body > p,
    body > ul li {
        font-size: 1rem;
    }
    
    body > ul {
        padding-left: 40px;
    }
    
    .nav {
        justify-content: center;
    }
    
    nav {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        margin-top: 10px;
    }
    
    nav a {
        margin: 0 8px;
    }
    
    .dropdown-content {
        min-width: 220px;
    }
}

@media (max-width: 480px) {
    body > h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    .brand img {
        width: 140px;
    }
    
    nav a {
        font-size: 0.9rem;
        margin: 0 6px;
    }
    
    .login {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}
