/* General body styling */
body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    text-align: center;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Use min-height instead of height for flexibility */
}

/* Styling for the header and navigation bar */
header {
    background-color: #fff;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    padding: 10px 0;
    z-index: 1000;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Title and content styling */
.content {
    margin: 80px auto 0; /* Adjust margin to account for the fixed header */
    flex-grow: 1; /* Allow the content to grow and take up available space */
}

/* Privacy Policy Specific Styling */
.privacy-policy-content {
    margin: 120px auto 40px;
    padding: 20px;
    max-width: 800px;
    text-align: left;
    background-color: #222;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

.privacy-policy-content h1 {
    color: #ffcc00;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.privacy-policy-content h2 {
    color: #ffcc00;
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 15px;
}

.privacy-policy-content h3 {
    color: #ffcc00;
    font-size: 1.4em;
    margin-top: 20px;
    margin-bottom: 10px;
}

.privacy-policy-content p, .privacy-policy-content ul {
    font-size: 1.1em;
    line-height: 1.6;
    color: #ddd;
}

.privacy-policy-content a {
    color: #ffcc00;
    text-decoration: none;
    transition: color 0.3s;
}

.privacy-policy-content a:hover {
    color: #fff;
}

/* Privacy Policy Footer */
.privacy-policy-footer {
    font-size: 0.8em;
    color: #bbb;
    text-align: center;
    margin-top: auto;
    padding: 20px;
    background-color: #222;
    border-top: 1px solid #333;
}
