/* General Page Style */
body {
    background-image: url('Images/background.jpeg'); /* match your current background */
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: Arial, sans-serif;
    color: white;
    margin: 0;
    padding: 0;
}

/* Header Navigation (if included) */
header nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 20px;
    margin: 0;
    background-color: rgba(0, 0, 0, 0.7);
}

header nav ul li {
    margin: 0 20px;
}

header nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

/* Main Privacy Content */
.content {
    max-width: 900px;
    margin: 80px auto 60px auto;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
}

.content h1, .content h2 {
    color: white;
    margin-top: 30px;
    font-size: 24px;
}

.content p, .content ul, .content address {
    font-size: 16px;
    line-height: 1.7;
    color: #f1f1f1;
}

/* Footer Styling */
footer {
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 12px;
}

footer a{
    color: blue;
}
/* Social Icons in Footer */
.social-icons {
    margin-top: 10px;
}

.social-icons a {
    margin: 0 10px;
    font-size: 16px;
    color: white;
    text-decoration: none;
}

.social-icons a:hover {
    color: #ff4d4d;
}
