/* General page styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa; /* Light background */
}

header {
    background-color: #f8f9fa;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #d9534f; /* Muted red line */
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
}

.nav-buttons a {
    text-decoration: none;
    color: #333;
    padding: 10px;
    font-weight: bold;
    margin-left: 20px;
    border-radius: 4px;
}

.nav-buttons a:hover {
    background-color: #d9534f;
    color: white;
}

.community-message {
    background-color: #d9534f;
    text-align: center;
    padding: 10px;
    color: white;
    font-size: 18px;
}

.policy-content {
    padding: 40px 20px;
    max-width: 800px;
    margin: auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.policy-content h1 {
    font-size: 32px;
    color: #d9534f;
    margin-bottom: 20px;
}

.policy-content h2 {
    font-size: 24px;
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
}

.policy-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.policy-content a {
    color: #d9534f;
    text-decoration: none;
}

.policy-content a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
    font-size: 14px;
}
