/* Global styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
}

header {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

header nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-size: 16px;
}

main {
    flex: 1;
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
    text-align: left; /* Left-aligned content */
}

.privacy-policy {
    line-height: 1.6;
}

.privacy-policy h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.privacy-policy h3 {
    font-size: 28px;
    margin-top: 30px;
    margin-bottom: 10px;
}

.privacy-policy p {
    font-size: 18px;
    margin-bottom: 15px;
}

.privacy-policy ul {
    list-style-type: disc;
    margin-left: 20px; /* Proper indentation for lists */
    font-size: 18px;
}

footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-top: auto;
}

footer a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
}

footer p {
    margin-top: 10px;
}

.logo > img{
    width: 80%;
    max-width: 30rem;
}

.fw-bold{
    font-weight: bold;
}