.infoBox2 {
                background-color: #c6e2fd; /* 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 */
                
            }

/* Link Styled as a Button */
.rdvButton {
    display: inline-block;
    padding: 10px 20px; /* Padding inside the rectangle */
    font-size: 1.5rem;
    color: #004080;
    text-decoration: none;
    font-weight: bold;
    background-color: #d8ebfd; /* Light blue background */
    border: 0px solid #004080; /* Blue border */
    border-radius: 8px; /* Rounded corners */
    margin-top: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hover Effect */
.rdvButton:hover {
    background-color: #004080; /* Darker blue on hover */
    color: white; /* White text on hover */
}

/* Text Styling */
.rdvText {
    margin-top: 10px;
    font-size: 1.1rem;
    color: #004080;
}

/* Small Note Under Text */
.rdvNote {
    margin-top: 3px;
    font-size: 0.8rem;
    color: #004080;
}