/* ================================
   Privacy Policy Page Styles
   Matching Consign Tech Design System
   ================================ */

/* ================================
   Hero Section
   ================================ */
.privacy_hero_section {
    background: linear-gradient(135deg, #002333 0%, #003A55 50%, #004C70 100%);
    padding: 200px 0 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.privacy_hero_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 139, 203, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 139, 203, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.privacy_hero_grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
    animation: heroFadeUp 0.7s ease-out 0.1s forwards;
    opacity: 0;
    transform: translateY(30px);
}

.privacy_badge {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 16777200px;
    background: rgba(0, 139, 203, 0.15);
    border: 1px solid rgba(0, 139, 203, 0.3);
    color: #8ACAE7;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.5px;
}

.privacy_hero_title {
    color: #FFF;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.privacy_hero_description {
    color: #B8C4CE;
    font-size: 17px;
    font-weight: 300;
    line-height: 30px;
    max-width: 700px;
}

.privacy_hero_meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
}

.privacy_meta_item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #8ACAE7;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
}

.privacy_meta_item svg {
    opacity: 0.7;
    flex-shrink: 0;
}

.privacy_meta_divider {
    color: rgba(138, 202, 231, 0.3);
    font-size: 14px;
}

/* ================================
   Content Section Layout
   ================================ */
.privacy_content_section {
    padding: 80px 0 120px 0;
    background: #FAFBFC;
}

.privacy_layout {
    display: flex;
    flex-direction: row;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ================================
   Sidebar Navigation
   ================================ */
.privacy_sidebar {
    width: 260px;
    flex-shrink: 0;
    position: relative;
}

.privacy_nav {
    position: sticky;
    top: 200px;
}

.privacy_nav_title {
    color: #0D1A3A;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 20px;
    padding-left: 16px;
}

.privacy_nav_link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    color: #5D667B;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    text-decoration: none !important;
    border-radius: 8px;
    transition: all 0.25s ease;
    position: relative;
}

.privacy_nav_link:hover {
    color: #008BCB;
    background: rgba(0, 139, 203, 0.05);
}

.privacy_nav_indicator {
    width: 3px;
    height: 0;
    background: #008BCB;
    border-radius: 2px;
    transition: height 0.25s ease;
    flex-shrink: 0;
}

.privacy_nav_link.active {
    color: #008BCB;
    font-weight: 500;
    background: rgba(0, 139, 203, 0.06);
}

.privacy_nav_link.active .privacy_nav_indicator {
    height: 20px;
}

/* ================================
   Main Content
   ================================ */
.privacy_main_content {
    flex: 1;
    min-width: 0;
}

/* Section Block */
.privacy_section {
    padding: 40px 0;
    border-bottom: 1px solid #E8EBF0;
}

.privacy_section:first-child {
    padding-top: 0;
}

.privacy_section:last-child {
    border-bottom: none;
}

/* Section Header */
.privacy_section_header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.privacy_section_number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #E6F3FA;
    color: #008BCB;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 2px;
}

.privacy_section_title {
    color: #0D1A3A;
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    margin: 0;
}

/* Section Body */
.privacy_section_body p {
    color: #3D4861;
    font-size: 16px;
    font-weight: 300;
    line-height: 30px;
    margin-bottom: 16px;
}

.privacy_section_body p:last-child {
    margin-bottom: 0;
}

/* Subsection Title */
.privacy_subsection_title {
    color: #0D1A3A;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    margin-top: 28px;
    margin-bottom: 12px;
}

/* Inline Link */
.privacy_inline_link {
    color: #008BCB !important;
    text-decoration: none !important;
    font-weight: 400;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.privacy_inline_link:hover {
    border-bottom-color: #008BCB;
}

/* ================================
   Highlight Box
   ================================ */
.privacy_highlight_box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    border-radius: 12px;
    background: #E6F3FA;
    border-left: 4px solid #008BCB;
    margin-top: 20px;
    margin-bottom: 8px;
}

.privacy_highlight_box_secure {
    background: #f0fdf4;
    border-left-color: #16a34a;
}

.privacy_highlight_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #FFF;
    flex-shrink: 0;
}

.privacy_highlight_title {
    color: #0D1A3A;
    font-size: 15px;
    font-weight: 600;
    line-height: 22px;
    margin-bottom: 4px !important;
}

.privacy_highlight_text {
    color: #3D4861;
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    margin-bottom: 0 !important;
}

/* ================================
   Contact Card
   ================================ */
.privacy_contact_card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    border-radius: 16px;
    background: #FFF;
    border: 1px solid #E8EBF0;
    margin-top: 24px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.privacy_contact_card:hover {
    border-color: #8ACAE7;
    box-shadow: 0 4px 16px rgba(0, 139, 203, 0.1);
}

.privacy_contact_card_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #E6F3FA;
    flex-shrink: 0;
}

.privacy_contact_label {
    color: #5D667B;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 4px !important;
}

.privacy_contact_email {
    color: #008BCB !important;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    text-decoration: none !important;
    transition: opacity 0.3s ease;
}

.privacy_contact_email:hover {
    opacity: 0.8;
}

/* ================================
   Responsive Styles
   ================================ */

/* Tablet */
@media (max-width: 1024px) {
    .privacy_hero_section {
        padding: 180px 0 60px 0;
    }

    .privacy_hero_title {
        font-size: 40px;
    }

    .privacy_content_section {
        padding: 60px 20px 100px 20px;
    }

    .privacy_layout {
        gap: 40px;
    }

    .privacy_sidebar {
        width: 220px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .privacy_hero_section {
        padding: 150px 20px 50px 20px;
    }

    .privacy_hero_title {
        font-size: 32px;
        line-height: 1.3;
    }

    .privacy_hero_description {
        font-size: 15px;
        line-height: 26px;
    }

    .privacy_hero_meta {
        flex-direction: column;
        gap: 8px;
    }

    .privacy_meta_divider {
        display: none;
    }

    .privacy_content_section {
        padding: 40px 16px 80px 16px;
    }

    .privacy_layout {
        flex-direction: column;
        gap: 0;
    }

    /* Hide sidebar on mobile */
    .privacy_sidebar {
        display: none;
    }

    .privacy_section {
        padding: 32px 0;
    }

    .privacy_section_header {
        gap: 12px;
    }

    .privacy_section_number {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .privacy_section_title {
        font-size: 20px;
        line-height: 30px;
    }

    .privacy_section_body p {
        font-size: 15px;
        line-height: 28px;
    }

    .privacy_highlight_box {
        flex-direction: column;
        gap: 12px;
        padding: 16px 20px;
    }

    .privacy_contact_card {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .privacy_hero_title {
        font-size: 28px;
    }

    .privacy_section_title {
        font-size: 18px;
        line-height: 28px;
    }
}