/* Privacy Policy Page Styles */
.privacy-policy-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero Section */
.privacy-hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    color: #4f46e5;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.privacy-hero h1 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 16px;
    color: #0f172a;
    background: linear-gradient(135deg, #0f172a 0%, #4f46e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.last-updated {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 20px;
    font-style: italic;
}

.hero-description {
    font-size: 18px;
    color: #334155;
    line-height: 1.6;
}

/* Policy Grid */
.policy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.policy-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
    height: fit-content;
}

.policy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
}

.policy-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.policy-card h2 {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e2e8f0;
}

.policy-subsection {
    margin-top: 20px;
}

.policy-subsection h3 {
    font-size: 16px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 10px;
}

.policy-card p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 16px;
}

.policy-card ul {
    list-style: none;
    padding-left: 0;
}

.policy-card ul li {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.policy-card ul li::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: #4f46e5;
}

/* Highlight Card for Guest Data */
.highlight-card {
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
    border: 1px solid #c7d2fe;
}

.highlight-card h2 {
    border-bottom-color: #a5b4fc;
}

.security-badge {
    display: inline-block;
    background: #4f46e5;
    color: white;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}

/* Contact Card */
.contact-card {
    text-align: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
}

.contact-card h2 {
    color: white;
    border-bottom-color: #334155;
}

.contact-card p {
    color: #cbd5e1;
}

.contact-email {
    display: inline-block;
    background: #4f46e5;
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 16px;
    transition: all 0.3s;
}

.contact-email:hover {
    background: #6366f1;
    transform: translateY(-2px);
}

/* Trust Section */
.trust-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 40px 0;
    border-top: 1px solid #e2e8f0;
    margin-top: 20px;
}

.trust-badge {
    text-align: center;
    padding: 16px 24px;
    background: white;
    border-radius: 60px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    min-width: 140px;
}

.trust-badge span {
    font-size: 28px;
    display: block;
    margin-bottom: 8px;
}

.trust-badge p {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-policy-section {
        padding: 40px 0;
    }

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

    .policy-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .policy-card {
        padding: 24px;
    }

    .trust-section {
        gap: 16px;
    }

    .trust-badge {
        min-width: 120px;
        padding: 12px 16px;
    }

    .trust-badge span {
        font-size: 24px;
    }

    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .trust-badge {
        min-width: calc(50% - 16px);
    }
}