/* ========== PAGE HERO ========== */
.page-hero {
    background: linear-gradient(135deg, #161519 0%, #2a1a2e 50%, #d90a2c 100%);
    color: #fff;
    padding: 160px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -15%;
    width: 60vh;
    height: 60vh;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(237,13,80,0.2) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.page-hero .subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    margin-top: 12px;
    position: relative;
    z-index: 1;
}

/* ========== PRIVACY CONTENT ========== */
.privacy-section {
    padding: 8vh 0 10vh;
}

.privacy-content {
    max-width: 860px;
    margin: 0 auto;
}

.privacy-content .intro {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a52;
    padding: 40px;
    background: #f8f8fa;
    border-radius: 16px;
    margin-bottom: 48px;
    border-left: 4px solid #d90a2c;
}

.privacy-content h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f2;
    color: #24262B;
}

.privacy-content h2 .num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #d90a2c, #ed0d50);
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    margin-right: 10px;
    vertical-align: middle;
}

.privacy-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 10px;
    color: #24262B;
}

.privacy-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #4a4a52;
    margin-bottom: 16px;
}

.privacy-content ul {
    margin-bottom: 16px;
    padding-left: 0;
}

.privacy-content ul li {
    font-size: 15px;
    line-height: 1.8;
    color: #4a4a52;
    padding: 8px 0 8px 28px;
    position: relative;
    border-bottom: 1px solid #f5f5f7;
}

.privacy-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 17px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d90a2c, #ed0d50);
}

.privacy-content a {
    color: #d90a2c;
    font-weight: 500;
}

.privacy-content a:hover {
    color: #ed0d50;
}

.privacy-content strong {
    color: #24262B;
}

/* ========== INFO CARD ========== */
.info-card {
    background: #161519;
    color: #fff;
    border-radius: 16px;
    padding: 40px;
    margin-top: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.info-card h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 8px;
    margin-top: 0;
}

.info-card p {
    color: #94949e;
    margin-bottom: 0;
}

.info-card a {
    color: #ed0d50;
}

.info-card a:hover {
    color: #ff6b6b;
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 768px) {
    .page-hero {
        padding: 130px 0 50px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .privacy-content .intro {
        padding: 24px;
    }

    .info-card {
        grid-template-columns: 1fr;
    }
}
