/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

:root {
    --primary-color: #007bff;
    --secondary-color: #333;
    --background-light: #f4f4f4;
    --background-dark: #1a1a1a;
    --text-light: #fff;
    --text-dark: #222;
    --shadow: rgba(0, 0, 0, 0.2);
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    body {
        background-color: var(--background-dark);
        color: var(--text-light);
    }
    .privacy-box {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
    }
}

/* Global Styling */
body {
    font-family: 'Poppins', sans-serif;
    background: var(--background-light);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
}

/* Navigation Bar */
headerx {
    background: var(--primary-color);
    padding: 15px 0;
    box-shadow: 0px 4px 10px var(--shadow);
}
nav.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
.logo {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-light);
}
.nav-links {
    list-style: none;
    display: flex;
}
.nav-links li {
    margin-left: 20px;
}
.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 400;
    transition: 0.3s;
}
.nav-links a:hover {
    color: yellow;
}

/* Privacy Policy Section */
.privacy-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
}
.privacy-wrapper {
    max-width: 800px;
    width: 100%;
}
.privacy-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px var(--shadow);
    transition: transform 0.3s ease;
}
.privacy-box:hover {
    transform: translateY(-5px);
}
.privacy-header h1 {
    text-align: center;
    color: var(--primary-color);
}
.privacy-content {
    margin-top: 20px;
}
.privacy-section {
    margin-bottom: 20px;
}
.privacy-section h2 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 5px;
}
.privacy-box-content p {
    line-height: 1.6;
}

/* Footer */
footer {
    background: var(--primary-color);
    padding: 15px 0;
    text-align: center;
    color: var(--text-light);
    margin-top: 40px;
}
footer p {
    margin: 0;
}
