.privacy-wrapper {
    width: 95%;
    margin: 60px auto;
    display: flex;
    justify-content: center;
}

.privacy-box {
    width: 100%;
    max-width: 950px;
    background: color-mix(in srgb, var(--green_secondary) 80%, transparent);
    border: 2px solid var(--gold);
    border-radius: 15px;
    padding: 40px;
}

.privacy-box h1 {
    color: var(--gold);
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.privacy-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(217, 180, 90, 0.25);
}

.privacy-section:last-child {
    border-bottom: none;
}

.privacy-section h3 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 18px;
}

.privacy-section p,
.privacy-section li {
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
}

.privacy-section ul {
    padding-left: 20px;
}

.privacy-section a {
    color: var(--gold);
    text-decoration: none;
}

.privacy-section a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-box {
        padding: 25px;
    }

    .privacy-box h1 {
        font-size: 24px;
    }
}