/* ==========================================
   RESET
========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f9fafb;
    font-family: Arial, Helvetica, sans-serif;
    color: #111827;
    line-height: 1.6;
}

/* ==========================================
   LAYOUT
========================================== */

.policy-layout {
    min-height: 100vh;
}

/* ==========================================
   HEADER
========================================== */

.policy-header {
    position: sticky;
    top: 0;
    z-index: 100;

    background: #ffffff;
    border-bottom: 1px solid #dbeafe;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-content {
    max-width: 900px;
    margin: auto;

    display: flex;
    align-items: center;
    gap: 18px;

    padding: 16px 20px;
}

.logo img {
    width: 120px;
    display: block;
}

.header-text {
    flex: 1;
}

.header-text h1 {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.header-text p {
    font-size: 13px;
    color: #9ca3af;
}

/* ==========================================
   TABS
========================================== */

.tabs {
    max-width: 900px;
    
    display: flex;
    gap: 10px;
    margin: auto;
    padding: 12px 20px;
}

.tab {
    flex: 1;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;

    padding: 12px;

    border: none;
    border-radius: 12px;

    background: transparent;

    font-size: 14px;
    font-weight: 600;

    color: #1d4ed8;

    cursor: pointer;
    transition: 0.25s;
}

.tab:hover {
    background: #dbeafe;
}

.tab.active {
    background: #1e3a8a;
    color: white;
    box-shadow: 0 2px 6px rgba(0,0,0,.15);
}

/* ==========================================
   MAIN CONTENT
========================================== */

.policy-content {
    max-width: 900px;
    margin: auto;
    padding: 30px 20px;
}

/* ==========================================
   TAB CONTENT
========================================== */

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* ==========================================
   POLICY CARD
========================================== */

.policy-card {
    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-radius: 18px;

    padding: 24px;

    margin-bottom: 20px;

    box-shadow: 0 2px 10px rgba(0,0,0,.05);
}

/* ==========================================
   INTRO
========================================== */

.policy-intro {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.8;
}

/* ==========================================
   SECTION HEADER
========================================== */

.section-title {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 18px;
}

.section-number {
    width: 34px;
    height: 34px;

    border-radius: 50%;

    background: #1e3a8a;
    color: white;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 14px;
    font-weight: bold;
}

.section-title h2 {
    font-size: 22px;
    color: #111827;
}

/* ==========================================
   TEXT
========================================== */

.policy-card p {
    margin-bottom: 16px;
    color: #4b5563;
    line-height: 1.8;
}

/* ==========================================
   LIST
========================================== */

.policy-list {
    padding-left: 22px;
}

.policy-list li {
    margin-bottom: 12px;
    color: #374151;
    line-height: 1.8;
}

.policy-list strong {
    color: #111827;
}

/* ==========================================
   INFO BOX
========================================== */

.info-box {
    margin-top: 18px;

    padding: 16px;

    background: #eff6ff;

    border-left: 5px solid #2563eb;

    border-radius: 10px;

    color: #1e40af;
}

/* ==========================================
   HIGHLIGHT BOX
========================================== */

.highlight-box {
    margin-top: 18px;

    padding: 16px;

    background: #fffbeb;

    border-left: 5px solid #f59e0b;

    border-radius: 10px;

    color: #92400e;

    font-weight: 600;
}

/* ==========================================
   FOOTER
========================================== */

.policy-footer {
    max-width: 900px;
    margin: auto;

    padding: 30px 20px;

    text-align: center;

    color: #9ca3af;
    font-size: 13px;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 768px) {

    .header-content {
        padding: 16px;
    }

    .policy-content {
        padding: 20px 16px;
    }

    .tabs {
        padding: 10px 16px;
    }

    .logo img {
        width: 90px;
    }

    .header-text h1 {
        font-size: 16px;
    }

    .tab {
        font-size: 13px;
        padding: 10px;
    }

    .policy-card {
        padding: 18px;
    }

    .section-title h2 {
        font-size: 18px;
    }

    .section-number {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

}