/* =========================================================================
   PRIVACY POLICY - PREMIUM STYLE
   ========================================================================= */

.privacy-page {
    background-color: #fafcff;
    padding-bottom: 100px;
}

.privacy-header {
    text-align: center;
    padding: 160px 0 100px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.privacy-header h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.privacy-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    letter-spacing: 1px;
}

.privacy-container {
    max-width: 1000px;
    margin: -50px auto 0;
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.privacy-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 60px 80px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.privacy-card h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #3b82f6;
    padding-bottom: 10px;
    display: inline-block;
}

.privacy-card h2:first-of-type {
    margin-top: 0;
}

.privacy-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
}

.privacy-card ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 25px;
    display: grid;
    gap: 12px;
}

.privacy-card ul li {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #475569;
    padding-left: 30px;
    position: relative;
}

.privacy-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    color: #3b82f6;
    font-weight: 900;
    font-size: 1.1rem;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .privacy-header {
        padding: 120px 0 80px;
    }
    .privacy-header h1 {
        font-size: 2.5rem;
    }
    .privacy-card {
        padding: 40px 30px;
        border-radius: 16px;
    }
    .privacy-card h2 {
        font-size: 1.8rem;
    }
}
