.privacy-page {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-updated {
    color: #262541;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.privacy-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    margin-bottom: 1.5rem;
    color: #262541;
}

.privacy-card h2 {
    font-size: 1.45rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #262541;
}

.privacy-card p,
.privacy-card li,
.privacy-card a,
.privacy-card span,
.privacy-card strong {
    color: #262541;
}

.privacy-card p {
    line-height: 1.7;
}

.privacy-card ul {
    margin: 1rem 0 1.3rem;
    padding-left: 1.2rem;
}

.privacy-card li {
    margin-bottom: 0.55rem;
    line-height: 1.5;
}

.privacy-card a:not(.privacy-button) {
    font-weight: 600;
    text-decoration: underline;
}

.privacy-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: #262541;
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    transition: transform 0.2s ease, background 0.2s ease;
    border: 3px solid transparent;
}

.privacy-button:hover {
    background: #FFF;
    color: #262541 !important;
    border: 3px solid #262541;
}

@media (max-width: 850px) {
    .privacy-card {
        padding: 1.4rem;
    }
}