header.sticky {
    position: sticky !important;
}

header.sticky .book-a-call-btn {
    color: var(--white-color) !important;
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

header.sticky .book-a-call-btn:hover {
    color: var(--white-color) !important;
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}

.terms-intro-text {
    font-size: 18px;
    line-height: 1.7;
    max-width: 900px;
}

/* Custom Highlight Anchor Links styling */
.terms-link {
    color: var(--primary-color, #F6A905);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.terms-link:hover {
    color: var(--secondary-color, #000000);
    text-decoration: underline;
}

.terms-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    counter-reset: none;
}

.terms-list li {
    display: list-item;
    list-style-type: "\2756  ";
    /* ❖ + spacing, drives the ::marker content */
    padding-left: 6px;
    margin-bottom: 22px;
    font-size: 1.1rem;
    line-height: 1.55;
    color: #555c66;
}

/* ---------- the custom marker design (genuine ::marker, not ::before) ---------- */
.terms-list li::marker {
    color: var(--secondary-color);
    /* purple/indigo bullet to match reference */
    font-size: 1.15rem;

}

.terms-list .term-title {
    font-weight: 700;
    color: var(--primary-color);
    /* darker blue for the bold heading */
}

.terms-list .term-dash {
    color: #555c66;
    margin: 0 2px;
}