@import url("./index.css");
@import url("./header.css");
@import url("./footer.css");
@import url("./modal.css");

/* ==========================================
   PRIVACY HERO
   ========================================== */

.privacy-hero {
    margin: 60px 0 48px;
}

.privacy-hero__label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.privacy-hero h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
}

.privacy-hero__date {
    font-size: 15px;
    color: var(--white);
    opacity: 0.45;
}

/* ==========================================
   PRIVACY CONTENT
   ========================================== */

.privacy-content {
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.privacy-section {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    padding: 36px 40px;
}

.privacy-section__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
}

.privacy-section p {
    font-size: 16px;
    color: var(--white);
    opacity: 0.85;
    line-height: 1.75;
    margin-bottom: 12px;
}

.privacy-section p:last-child {
    margin-bottom: 0;
}

.privacy-section ul {
    list-style: none;
    margin: 12px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.privacy-section ul li {
    font-size: 16px;
    color: var(--white);
    opacity: 0.85;
    line-height: 1.65;
    padding-left: 20px;
    position: relative;
}

.privacy-section ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.privacy-section a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.privacy-section a:hover {
    opacity: 0.8;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 768px) {
    .privacy-hero {
        margin: 30px 0 32px;
    }

    .privacy-hero h1 {
        font-size: 28px;
    }

    .privacy-section {
        padding: 24px 20px;
        border-radius: 14px;
    }

    .privacy-section__title {
        font-size: 18px;
    }

    .privacy-section p,
    .privacy-section ul li {
        font-size: 15px;
    }
}