/* General styles for body, header, and footer */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f0f4f8;
}

.header {
    background-color: teal;
    color: white;
    padding: 10px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.header .logo h1 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

.nav {
    display: flex;
}

.nav-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.nav-list li {
    margin-right: 20px;
}

.nav-list li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 16px;
}

.nav-list li a:hover {
    text-decoration: underline;
}

.main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.privacy-policy {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.privacy-policy h2 {
    font-size: 24px;
    color: #333;
    margin-top: 0;
    margin-bottom: 20px;
}

.privacy-policy h3 {
    font-size: 20px;
    color: #555;
    margin-top: 16px;
    margin-bottom: 12px;
}

.privacy-policy p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.privacy-policy ul {
    margin-bottom: 16px;
}

.footer {
    background-color: teal;
    color: white;
    text-align: center;
    padding: 20px 0;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer .social-links {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer .social-links li {
    display: inline-block;
    margin-right: 10px;
}

.footer .social-links li a {
    color: white;
    font-size: 20px;
}

.footer .social-links li a:hover {
    color: #004d4d;
}
