/* ── PRIVACY POLICY PAGE ── */

strong {
    font-weight: 600;
}

.privacy-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px 100px;
    box-sizing: border-box;
}

/* ── PAGE TITLE ── */

.privacy-page-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 56px;
}

.privacy-page-title h1 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 25px;
    font-weight: 400;
    color: #000;
    margin: 0 0 18px;
    letter-spacing: 1px;
}

.privacy-title-line {
    width: 50px;
    height: 1px;
    background: #000;
    margin-bottom: 18px;
}

.privacy-updated {
    font-family: Montserrat, sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #888;
    letter-spacing: 0.5px;
    margin: 0;
}

/* ── INTRO BOX ── */

.privacy-intro-box {
    background: #FBF6F0;
    border-left: 3px solid #F0956A;
    padding: 24px 28px;
    margin-bottom: 48px;
    border-radius: 0 4px 4px 0;
}

.privacy-intro-box p {
    font-family: Montserrat, sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.85;
    color: #000;
    margin: 0;
}

/* ── SECTIONS ── */

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

.privacy-section h2 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 20px;
    font-weight: 400;
    color: #000;
    margin: 0 0 20px;
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e8e8e8;
}

.privacy-section-num {
    color: #F0956A;
    font-size: 22px;
    flex-shrink: 0;
    font-weight: 500;
}

.privacy-section p {
    font-family: Montserrat, sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.85;
    color: #333;
    margin: 0 0 16px;
}

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

/* ── LISTS ── */

.privacy-list {
    font-family: Montserrat, sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.85;
    color: #333;
    padding-left: 22px;
    margin: 0 0 16px;
}

.privacy-list li {
    margin-bottom: 10px;
}

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

/* ── INFO BLOCK ── */

.privacy-info-block {
    background: #f9f9f9;
    border: 1px solid #ececec;
    border-radius: 6px;
    overflow: hidden;
    margin-top: 12px;
}

.privacy-info-row {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 13px 20px;
    border-bottom: 1px solid #ececec;
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    color: #333;
}

.privacy-info-row:last-child {
    border-bottom: none;
}

.privacy-info-label {
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #F0956A;
    min-width: 90px;
    flex-shrink: 0;
}

/* ── TABLE ── */

.privacy-table-wrap {
    overflow-x: auto;
    margin-top: 12px;
}

.privacy-table {
    width: 100%;
    border-collapse: collapse;
    font-family: Montserrat, sans-serif;
    font-size: 14px;
}

.privacy-table thead tr {
    background: #F0956A;
}

.privacy-table thead th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
}

.privacy-table tbody tr {
    border-bottom: 1px solid #ececec;
}

.privacy-table tbody tr:nth-child(even) {
    background: #fafafa;
}

.privacy-table tbody td {
    padding: 12px 16px;
    color: #333;
    font-weight: 300;
    line-height: 1.6;
    vertical-align: top;
}

/* ── RIGHTS GRID ── */

.privacy-rights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.privacy-right-card {
    background: #fafafa;
    border: 1px solid #ececec;
    border-radius: 8px;
    padding: 22px 18px;
    transition: border-color 0.2s;
}

.privacy-right-card:hover {
    border-color: #F0956A;
}

.privacy-right-icon {
    font-size: 22px;
    margin-bottom: 10px;
    line-height: 1;
}

.privacy-right-card h3 {
    font-family: Montserrat, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #000;
    margin: 0 0 8px;
}

.privacy-right-card p {
    font-family: Montserrat, sans-serif;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* ── LINKS ── */

.privacy-link {
    color: black;
    text-decoration: none;
    font-weight: 400;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.privacy-link:hover {
    color: #F0956A;
}

.privacy-section a {
    color: black;
    text-decoration: none;
}

.privacy-section a:hover {
    text-decoration: none;
    color: #F0956A;
    text-decoration: underline;
}

/* ── RESPONSIVE ── */

@media (max-width: 768px) {
    .privacy-page {
        padding: 40px 20px 70px;
    }

    .privacy-rights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .privacy-table thead th,
    .privacy-table tbody td {
        padding: 10px 12px;
        font-size: 13px;
    }
}

@media (max-width: 520px) {
    .privacy-rights-grid {
        grid-template-columns: 1fr;
    }

    .privacy-info-row {
        flex-direction: column;
        gap: 4px;
    }

    .privacy-info-label {
        min-width: unset;
    }
}
