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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

html {
    font-size: 62.5%;
}

body {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    background: black;
    color: white;
}

/* Header */
header {
    margin-top: 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 9%;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    font-size: 3rem;
    color: blue;
    font-weight: 800;
    cursor: pointer;
    transition: 0.5s ease;
    text-shadow: 0 0 5px blue;
}

.logo:hover {
    transform: scale(1.1);
}

/* Navigation */
nav a {
    font-size: 1.8rem;
    color: white;
    margin-left: 4rem;
    font-weight: 500;
    transition: 0.2s ease;
    border-bottom: 3px solid transparent;
}

nav a:hover,
nav a.active {
    color: blue;
    border-bottom: 3px solid blue;
}

/* Mobile Navigation */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1000;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s ease;
}

@media (max-width: 995px) {
    nav {
        position: absolute;
        display: none;
        top: 0;
        right: 0;
        width: 40%;
        background: #161616;
        border-left: 3px solid blue;
        border-bottom: 3px solid blue;
        border-bottom-left-radius: 2rem;
        padding: 2rem;
    }

    nav.active {
        display: block;
    }

    nav a {
        display: block;
        font-size: 2rem;
        margin: 2rem 0;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background: black;
        padding: 15px;
        border-radius: 5px;
    }

    .nav-menu.show {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* Policy Section */
.policy-section {
    padding: 120px 0 60px;
    background: black;
}

.policy-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 30px;
    background: black;
    border-radius: 8px;
}

.policy-container h1 {
    font-size: 4.2rem;
    margin-bottom: 1.5rem;
}

.policy-container > p {
    font-size: 1.6rem;
    color: #ccc;
    margin-bottom: 3rem;
}

.last-updated {
    color: #888;
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.policy-item {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #333;
}

.policy-item:last-child {
    border-bottom: none;
}

.policy-item h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.policy-item p {
    font-size: 1.5rem;
    color: #bbb;
    line-height: 1.8;
    text-align: justify;
}

/* Footer */
footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 30px 0;
    margin-top: 60px;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-links a {
    color: white;
    transition: 0.3s ease;
}

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

/* Responsive */
@media (max-width: 995px) {
    .policy-container {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .policy-container h1 {
        font-size: 3.5rem;
    }
    
    .policy-item h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .policy-section {
        padding: 100px 0 40px;
    }
    
    .policy-container {
        padding: 25px 15px;
        margin: 0 15px;
    }
    
    .policy-container h1 {
        font-size: 3rem;
    }
    
    .policy-container > p {
        font-size: 1.5rem;
    }
    
    .last-updated {
        font-size: 1.3rem;
    }
    
    .policy-item h2 {
        font-size: 1.8rem;
    }
    
    .policy-item p {
        font-size: 1.4rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 90px 0 30px;
    }
    
    .policy-container {
        padding: 20px 10px;
        margin: 0 10px;
    }
    
    .policy-container h1 {
        font-size: 2.5rem;
    }
    
    .policy-container > p {
        font-size: 1.4rem;
    }
    
    .policy-item h2 {
        font-size: 1.6rem;
    }
    
    .policy-item p {
        font-size: 1.3rem;
    }
}
