.privacy-container {
    padding: 12vh 5vw;
    background-color: #111;
    color: #c0c0c0;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
}

.privacy-content h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #fff;
    margin-bottom: 10px;
    border-bottom: 2px solid wheat;
    padding-bottom: 15px;
}

.privacy-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    color: #f0f0f0;
    margin-top: 40px;
    margin-bottom: 15px;
}

.privacy-content .last-updated {
    font-style: italic;
    color: #888;
    margin-bottom: 40px;
}

.privacy-content a {
    color: wheat;
    text-decoration: none;
    transition: color 0.3s;
}

.privacy-content a:hover {
    color: #fff;
    text-decoration: underline;
}

.privacy-content ul {
    list-style-position: inside;
    padding-left: 10px;
}

.privacy-content li {
    margin-bottom: 10px;
}