.book-now-btn {
    display: inline-block;
    background-color: #0a2a4a;
    /* dark navy like your BOOK NOW */
    color: #fff;
    font-weight: bold;
    padding: 10px 25px;
    border-radius: 10px;
    border: 1px ridge;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.3s ease-in-out;
}

.book-now-btn:hover {
    background-color: #F26230;
    color: #fff;
    text-decoration: none;
}

.equal-list {
    list-style: none;
    /* remove default bullets */
    padding: 0;
    margin: 0;
    font-size: 18px;
}

.equal-list li {
    margin-bottom: 6px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    text-align: left;
    color: #ffffff;
    position: relative;
    padding-left: 30px;
    /* space for custom bullet */
}

.equal-list li::before {
    content: "•";
    /* custom bullet */
    color: #fff;
    /* bullet color */
    font-size: 18px;
    /* bullet size */
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1.2;
    /* align vertically */
}

.text-head {
    margin-top: 40px;
}

.tc-list {
padding: 0;
margin: 0;
}

.tc-list li {
list-style: none;          /* remove default bullets */
position: relative;
padding-left: 25px;        /* space between bullet and text */
margin-bottom: 8px;
font-size: 16px;
line-height: 1.6;
color: black;               /* keep white text */
font-family: 'Inter', sans-serif;
}

.tc-list li::before {
content: "•";              /* custom bullet */
position: absolute;
left: 0;
top: 0;
color: black;            /* orange bullet */
font-size: 20px;
line-height: 1.6;
}