.bg-yellow {
    background-color: #fffb57;
}

.checklist li {
    position: relative;
    padding-left: 25px; /* space for check */
    margin-bottom: 10px;
}

.checklist li::before {
    content: "✔";      
    position: absolute;
    left: 0;
    color: green;       
    font-weight: bold;
}

.statement p {
    font-size: 14px;
}

.accordion-button::after {
    display: none; /* hide default Bootstrap arrow */
}
.accordion-button {
    display: flex;
    justify-content: space-between; /* text left, icon right */
    align-items: center;
    font-size: 16px !important;
    color: #51a3f7 !important;
    font-weight: bold !important;
}
.icon {
    font-weight: bold;
}
.accordion-button.collapsed .icon::before {
    content: "+";
}
.accordion-button:not(.collapsed) .icon::before {
    content: "-";
}

.accordion-body ol li p{
    font-size: 14px;
}

.accordion-body ol {
    font-size: 14px;
}

.accordion-body ul li p{
    font-size: 14px;
}

.countdown {
    display: flex;
    font-size: 48px;
    font-weight: bold;
    justify-content: center;
}
.countdown-text{
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 10px;
}
.box {
    background: #333;
    color: white;
    padding: 10px;
    margin: 0 10px;
    border-radius: 10px;
    width: 100px;
    text-align: center;
}

.label {
    font-size: 16px;
    text-transform: uppercase;
    margin: 0 10px;
    font-weight: normal;
}

.free-text {
    font-size: 24px;
    font-weight: bold;
    margin-top: 20px;
    color: red;
}

@media (max-width: 600px) {
      .checklist li::before {
        top: 7px;
      }

      .m-mt-10 {
        margin-top: 10px;
      }
     .m-t-center {
        text-align: center;
      }
}


