.infoBox1 {
    background-color: #d8ebfd; /* Light blue */
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 90vw;
    width: min(90%, 33rem);
    margin: 1.5rem auto;
    text-align: center;
    overflow-x: auto; /* Allows horizontal scrolling if needed */
}

/* Keep text on one line */
.infoBox1 .textLines1 {
    text-align: left;
    font-size: clamp(0.01rem, 3vw, 1.3rem); /* clamp(min, preferred, max); */
    line-height: 1.5;
    width: 100%; /* Ensures text fits in the box */
    margin: 0 auto;
    white-space: nowrap; /* Prevents text from breaking */
    overflow-x: auto; /* Allows scrolling if text is too long */
}

.infoBox1 p {
    font-size: clamp(0.01rem, 4.8vw, 2rem); /* Adjusted middle value */
    color: #004080;
    font-weight: bold;
}

.smallText {
    font-size: 0.8rem; /* Adjust size as needed */
    opacity: 0.7; /* Optional: makes it slightly lighter */
}
