.privacy-page {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 12px 0 72px;
    box-sizing: border-box;
}

.privacy-hero {
    max-width: 860px;
    margin: 0 auto 32px;
    text-align: center;
}

.privacy-hero h1 {
    margin: 0 0 16px;
    line-height: 1.1;
    color: #ffffff;
}

.privacy-intro {
    margin: 0 auto;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    opacity: 0.9;
}

.privacy-updated {
    margin: 14px 0 0;
    color: rgba(212, 175, 55, 0.82);
    font-size: 0.95rem;
    line-height: 1.5;
}

.privacy-feature,
.privacy-closing,
.privacy-section {
    position: relative;
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(10, 10, 10, 0.96));
    border: 1px solid rgba(212, 175, 55, 0.24);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.30);
}

.privacy-feature::before,
.privacy-closing::before,
.privacy-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 35%);
}

.privacy-feature {
    margin-bottom: 28px;
    padding: 34px 28px;
}

.privacy-closing {
    padding: 34px 28px;
}

.privacy-feature-content,
.privacy-closing-content {
    max-width: 780px;
    position: relative;
    z-index: 1;
}

.privacy-feature-label {
    margin: 0 0 10px;
    color: #d4af37;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.9;
}

.privacy-feature h2,
.privacy-closing h2,
.privacy-section h2 {
    margin: 0 0 14px;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.15;
    color: #ffffff;
}

.privacy-feature p,
.privacy-closing p,
.privacy-section p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
    max-width: 760px;
}

.privacy-feature p + p,
.privacy-section p + p {
    margin-top: 16px;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 28px;
}

.privacy-card {
    position: relative;
    padding: 26px 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.privacy-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 35%);
}

.privacy-card-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 14px;
    color: #d4af37;
    background: rgba(212, 175, 55, 0.08);
    font-size: 1.15rem;
}

.privacy-card h2 {
    margin: 0 0 12px;
    font-size: 1.35rem;
    color: #ffffff;
    line-height: 1.2;
}

.privacy-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
}

.privacy-content {
    display: grid;
    gap: 20px;
    margin-bottom: 28px;
}

.privacy-section {
    padding: 30px 28px;
}

.privacy-section > * {
    position: relative;
    z-index: 1;
}

.privacy-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.privacy-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid transparent;
    font-family: "Gabriela", serif;
    font-size: 1rem;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition:
        color 300ms ease,
        border-color 300ms ease,
        background 300ms ease,
        transform 180ms ease,
        box-shadow 180ms ease;
}

.privacy-button:hover {
    transform: translateY(-1px);
}

.privacy-button.primary {
    background: #d4af37;
    border: 1px solid #d4af37;
    color: #000000;
}

.privacy-button.primary:hover {
    background: #f4deb0;
    border-color: #f4deb0;
    color: #000000;
    box-shadow: 0 10px 24px rgba(212, 175, 55, 0.18);
}

.privacy-button.secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.26);
    color: #ffffff;
}

.privacy-button.secondary:hover {
    border-color: #d4af37;
    color: #d4af37;
    background: rgba(212, 175, 55, 0.06);
}

/* RESPONSIVE */
@media (max-width: 980px) {
    .privacy-grid {
        grid-template-columns: 1fr;
    }

    .privacy-feature,
    .privacy-closing,
    .privacy-section {
        padding: 28px 22px;
    }
}

@media (max-width: 768px) {
    .privacy-page {
        padding: 28px 20px 56px;
    }

    .privacy-hero {
        margin-bottom: 28px;
    }

    .privacy-actions {
        flex-direction: column;
    }

    .privacy-button {
        width: 100%;
    }
}