/* ===== BASE STYLES ===== */
:root {
    --primary-red: #e50914;
    --dark-bg: #141414;
    --light-text: #fff;
    --gray-text: #8c8c8c;
    --bg-opacity: 0.85;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    background-color: var(--dark-bg);
    background: linear-gradient(rgba(0, 0, 0, var(--bg-opacity))), url("../images/Bg_image.jpg") no-repeat center center/cover;
    background-attachment: fixed;
    color: var(--light-text);
    line-height: 1.6;
}

/* ===== NAVIGATION ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 4%;
    position: absolute;
    /* or relative/fixed depending on preference */
    top: 0;
    width: 100%;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.logo {
    height: 40px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 100%;
    width: auto;
}

.nav-btn {
    background-color: var(--primary-red);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    padding: 8px 15px;
    text-decoration: none;
    display: inline-block;
}

.nav-btn:hover {
    background-color: #f40612;
    transform: scale(1.05);
}

/* ===== MAIN CONTENT ===== */
.policy-container {
    max-width: 800px;
    margin: 100px auto 60px;
    /* Top margin for navbar */
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    min-height: 60vh;
}

.policy-container h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-red);
    text-align: center;
}

.policy-container h2 {
    font-size: 1.5rem;
    margin: 1.5rem 0 0.5rem;
    color: var(--light-text);
}

.policy-container p {
    margin-bottom: 1rem;
    color: #ccc;
}

.policy-container ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
    color: #ccc;
}

.policy-container li {
    margin-bottom: 0.5rem;
}

/* ===== FOOTER ===== */
footer {
    width: 100%;
    padding: 30px 4%;
    background-color: rgba(20, 20, 20, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--light-text);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}