@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background-color: #0c0c0c;
    color: #e0e0e0;
    line-height: 1.6;
}

header {
    background-color: rgba(12, 12, 12, 0.8);
    padding: 1rem 2rem;
    border-bottom: 1px solid #222;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00aaff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 2.5rem;
}

nav a {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #00aaff;
    transition: width 0.3s ease;
}

nav a:hover {
    color: #00aaff;
}

nav a:hover::after {
    width: 100%;
}

.policy {
    max-width: 900px;
    margin: 6rem auto;
    padding: 3rem;
    background: #1a1a1a;
    border-radius: 15px;
    border: 1px solid #222;
}

.policy h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #00aaff;
}

.policy h3 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #00aaff;
    padding-bottom: 0.5rem;
    color: #fff;
}

.policy p, .policy ul li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #c0c0c0;
}

.policy p strong {
    color: #fff;
}

.policy ul {
    padding-left: 20px;
}

footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid #222;
    background-color: #0c0c0c;
    margin-top: 6rem;
}
