
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Manrope', sans-serif;
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
    color: #2c3e50;
    line-height: 1.6;
}

/* Header/Navigation */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 120, 180, 0.08);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0078b4;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
}

nav a {
    color: #2c3e50;
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    border-radius: 8px;
    padding: 0.5rem 1rem;
}

nav a:hover {
    color: #00a8e8;
}

.nav-links {
    display: flex;
    gap: 0.5rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #00a8e8 0%, #0078b4 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

/* Main Content */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.last-updated {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.section {
    margin-bottom: 2.5rem;
}

.section h2 {
    color: #0078b4;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.section li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0078b4 0%, #005a8d 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: left;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p, .footer-section a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.8;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    nav a {
        margin-left: 1rem;
        font-size: 0.85rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

