/**
 * Privacy Policy Page - Styles
 * Based on Style Guide & Design Principles
 * Date: 2025-01-08
 */

/* ═══════════════════════════════════════════════════════════════
   Page Container
   ═══════════════════════════════════════════════════════════════ */

.privacy-page {
    background: #F9FAFB;
    min-height: 100vh;
    padding: 40px 0 80px;
}

/* ═══════════════════════════════════════════════════════════════
   Header Section
   ═══════════════════════════════════════════════════════════════ */

.privacy-header {
    background: linear-gradient(135deg, rgb(37, 60, 137) 0%, rgb(45, 75, 170) 100%);
    color: #FFFFFF;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 48px;
}

.privacy-header-title {
    font-family: 'iransansxv';
    font-size: 2.25rem; /* 36px */
    font-weight: 700;
    margin: 0 0 16px 0;
    color: #FFFFFF;
}

.privacy-header-subtitle {
    font-family: 'iransansxv';
    font-size: 1.125rem; /* 18px */
    font-weight: 400;
    margin: 0;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════════
   Content Container
   ═══════════════════════════════════════════════════════════════ */

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

.privacy-content {
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08),
                0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 48px;
    margin-bottom: 32px;
}

/* ═══════════════════════════════════════════════════════════════
   Last Updated Badge
   ═══════════════════════════════════════════════════════════════ */

.privacy-last-updated {
    background: #E5E9F4;
    color: rgb(37, 60, 137);
    font-family: 'iransansxv';
    font-size: 0.875rem; /* 14px */
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 32px;
}

/* ═══════════════════════════════════════════════════════════════
   Typography
   ═══════════════════════════════════════════════════════════════ */

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-section-title {
    font-family: 'iransansxv';
    font-size: 1.5rem; /* 24px */
    font-weight: 600;
    color: #000000;
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #E5E7EB;
}

.privacy-section-text {
    font-family: 'iransansxv';
    font-size: 1rem; /* 16px */
    font-weight: 400;
    color: #374151;
    line-height: 1.75;
    margin: 0 0 16px 0;
}

.privacy-section-text:last-child {
    margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════════
   Lists
   ═══════════════════════════════════════════════════════════════ */

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.privacy-list-item {
    font-family: 'iransansxv';
    font-size: 1rem;
    font-weight: 400;
    color: #374151;
    line-height: 1.75;
    margin-bottom: 12px;
    padding-right: 28px;
    position: relative;
}

.privacy-list-item::before {
    content: '';
    position: absolute;
    right: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: rgb(37, 60, 137);
    border-radius: 50%;
}

/* ═══════════════════════════════════════════════════════════════
   Highlight Box
   ═══════════════════════════════════════════════════════════════ */

.privacy-highlight {
    background: #E5E9F4;
    border-right: 4px solid rgb(37, 60, 137);
    padding: 20px 24px;
    border-radius: 8px;
    margin: 24px 0;
}

.privacy-highlight-text {
    font-family: 'iransansxv';
    font-size: 1rem;
    font-weight: 500;
    color: #000000;
    line-height: 1.75;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   Contact Section
   ═══════════════════════════════════════════════════════════════ */

.privacy-contact {
    background: #F9FAFB;
    border-radius: 8px;
    padding: 24px;
    margin-top: 32px;
    text-align: center;
}

.privacy-contact-title {
    font-family: 'iransansxv';
    font-size: 1.25rem; /* 20px */
    font-weight: 600;
    color: #000000;
    margin: 0 0 12px 0;
}

.privacy-contact-text {
    font-family: 'iransansxv';
    font-size: 1rem;
    font-weight: 400;
    color: #4B5563;
    line-height: 1.75;
    margin: 0 0 16px 0;
}

.privacy-contact-link {
    color: rgb(37, 60, 137);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.privacy-contact-link:hover {
    color: rgb(30, 48, 110);
    text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════════════
   Responsive Design
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .privacy-header {
        padding: 40px 0;
    }

    .privacy-header-title {
        font-size: 1.875rem; /* 30px */
    }

    .privacy-header-subtitle {
        font-size: 1rem; /* 16px */
        padding: 0 16px;
    }

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

    .privacy-section-title {
        font-size: 1.25rem; /* 20px */
    }

    .privacy-section-text,
    .privacy-list-item {
        font-size: 0.938rem; /* 15px */
    }
}

@media (max-width: 480px) {
    .privacy-page {
        padding: 24px 0 60px;
    }

    .privacy-header {
        padding: 32px 0;
        margin-bottom: 32px;
    }

    .privacy-container {
        padding: 0 16px;
    }

    .privacy-content {
        padding: 24px 20px;
        border-radius: 8px;
    }

    .privacy-last-updated {
        font-size: 0.813rem; /* 13px */
        padding: 10px 16px;
    }
}
