/* =============================================
   SHANNON AI - PRIVACY POLICY PAGE
   ============================================= */

.privacy-page {
    position: relative;
    min-height: 100vh;
    width: 100%;
    background: #030712;
    color: #f1f5f9;
    overflow-x: hidden;
}

.privacy-hero {
    position: relative;
    z-index: 2;
    padding: 120px 24px 48px;
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0.4) 0%,
        rgba(3, 7, 18, 0.92) 100%
    );
}

.privacy-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.privacy-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.28);
    border-radius: 999px;
    margin-bottom: 20px;
}

.privacy-hero-badge svg {
    font-size: 18px;
    color: #60a5fa;
}

.privacy-hero-badge span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #93c5fd;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.privacy-hero-title {
    font-family: "Inter", system-ui, sans-serif;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 14px 0;
}

.privacy-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.7;
    color: rgba(203, 213, 225, 0.85);
    max-width: 560px;
    margin: 0;
}

.privacy-section {
    position: relative;
    z-index: 2;
    padding: 0 24px 80px;
}

.privacy-card {
    background: rgba(3, 7, 18, 0.45);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    padding: 32px;
}

.privacy-content h2 {
    font-family: "Inter", system-ui, sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 32px 0 16px 0;
    padding-top: 16px;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.privacy-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.privacy-content h3 {
    font-family: "Inter", system-ui, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(226, 232, 240, 0.95);
    margin: 20px 0 12px 0;
}

.privacy-content p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(203, 213, 225, 0.85);
    margin: 0 0 16px 0;
}

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

.privacy-content li {
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(203, 213, 225, 0.85);
    margin-bottom: 8px;
}

.privacy-content li strong {
    color: rgba(226, 232, 240, 0.95);
}

.privacy-delete-action {
    margin-top: 20px;
    margin-bottom: 8px;
}

.privacy-delete-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border: 1px solid rgba(220, 38, 38, 0.5);
    border-radius: 10px;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.privacy-delete-button:hover {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.privacy-delete-button:active {
    transform: translateY(0);
}

.privacy-contact {
    margin-top: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 12px;
}

.privacy-contact p {
    margin: 0;
    line-height: 1.8;
}

@media (max-width: 600px) {
    .privacy-card {
        padding: 20px;
    }

    .privacy-content h2 {
        font-size: 1.2rem;
    }

    .privacy-content h3 {
        font-size: 1rem;
    }
}
