/* ===== PAGE HEADER ===== */
.page-header {
    padding: 7rem 2rem 3rem;
    text-align: center;
    background: var(--red);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 65%);
    top: -150px;
    right: -100px;
    border-radius: 50%;
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212,168,83,0.1) 0%, transparent 65%);
    bottom: -80px;
    left: -50px;
    border-radius: 50%;
    pointer-events: none;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.page-header p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

/* ===== PRIVACY CONTENT ===== */
.privacy-content {
    background: var(--white);
    padding: 4rem 2rem;
}

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

.privacy-section {
    margin-bottom: 2.5rem;
}

.privacy-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-gray);
}

.privacy-section h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark);
    margin: 1.5rem 0 0.6rem;
}

.privacy-section p {
    color: #555;
    line-height: 1.9;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.privacy-section ul {
    list-style: none;
    margin: 0.8rem 0 1.2rem;
    padding: 0;
}

.privacy-section ul li {
    color: #555;
    font-size: 0.93rem;
    line-height: 1.8;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.3rem;
}

.privacy-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
}

.privacy-section a {
    color: var(--red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.privacy-section a:hover {
    color: var(--red-light);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding: 0.85rem 1.8rem;
    background: var(--red);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(156,42,64,0.25);
}

.back-link:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(156,42,64,0.35);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .page-header h1 { font-size: 2.2rem; }
}

@media (max-width: 480px) {
    .page-header h1 { font-size: 1.8rem; }
    .privacy-section h2 { font-size: 1.3rem; }
}
