body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 800px;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

h1 {
    text-align: center;
    font-size: 24px;
    color: #333;
}

h2, h3 {
    color: #444;
    margin-top: 18px;
}

p, ul {
    font-size: 11px;
    color: #666;
    line-height: 1.6;
}

ul {
    padding-left: 20px;
}

.privacy-policy {
    display: block;
    margin-top: 30px;
    text-align: center;
    font-size: 11px;
    color: blue;
    text-decoration: none;
    font-weight: bold;
}

.privacy-policy:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .container {
        width: 90%;
        padding: 20px;
    }
    h1 {
        font-size: 24px;
    }
    p, ul {
        font-size: 14px;
    }
}
