#mobile-banner {
    display: none;
    /* Hide the banner by default */
    position: fixed;
    bottom: 20px;
    /* left: 50%;
    transform: translateX(-50%); */
    background-color: rgba(14, 90, 16, 0.8);
    color: whitesmoke;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    text-align: center;
}

/* Show the banner only on mobile devices */
@media (max-width: 768px) {
    #mobile-banner {
        display: block;
    }
}

.dismiss-banner-btn {
    background: none;
    border: none;
    color: whitesmoke;
    font-size: 1.2rem;
    font-weight: bold;
    margin-left: 10px;
    margin-top: 20px;
    cursor: pointer;
    padding: 0;
}

.cta-btn-group {
    display: flex;
    /* Align buttons horizontally */
    gap: 20px;
    /* Add spacing between the buttons */
    margin-top: 20px;
    /* Add spacing above the button group */
    justify-content: center;
}

.cta-btn {
    display: inline-flex;
    /* Use flexbox for alignment */
    align-items: center;
    /* Vertically center the text and arrow */
    justify-content: center;
    /* Center the content horizontally */
    padding: 10px 20px;
    /* Add spacing inside the button */
    border: 1px solid whitesmoke;
    /* Add a border around the button */
    color: whitesmoke;
    /* Set the text color */
    font-size: 1rem;
    /* Adjust the font size */
    font-weight: 700;
    /* Make the text bold */
    text-decoration: none;
    /* Remove underline from the link */
    background-color: transparent;
    /* Transparent background */
    transition: all 0.3s ease;
    /* Smooth transition for hover effects */
}

.cta-btn:hover {
    background-color: whitesmoke;
    /* Change background color on hover */
    color: black;
    /* Change text color on hover */
}

.cta-arrow {
    margin-left: 10px;
    /* Add spacing between the text and the arrow */
    font-size: 1.2rem;
    /* Slightly larger size for the arrow */
    transition: margin-left 0.3s ease;
    /* Smooth transition for hover effects */
}

.cta-btn:hover .cta-arrow {
    margin-left: 15px;
    /* Move the arrow slightly on hover */
}