/* ── TERMS OF USE PAGE ── */

strong {
    font-weight: 600;
}

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

/* ── PAGE TITLE ── */

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

.terms-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;
}

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

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

/* ── INTRO BOX ── */

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

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

/* ── SECTIONS ── */

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

.terms-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;
}

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

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

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

/* ── LISTS ── */

.terms-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;
}

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

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

/* ── INFO BLOCK ── */

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

.terms-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;
}

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

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

/* ── LINKS ── */

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

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

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

/* ── RESPONSIVE ── */

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

@media (max-width: 520px) {
    .terms-info-row {
        flex-direction: column;
        gap: 4px;
    }

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