.popup-image {
    width: 100px;
    height: auto;
    transition: transform 0.3s ease;
}

/* Full-Width Announcement Bar */
.announcement-bar {
    position: relative;
    top: 0; /* Place it at the very top */
    left: 0;
    width: 100%; /* Full screen width */
    background-color: #d2b181; /* Dark green background */
    color: #FFFFFF; /* White text color */
    font-size: 16px;
    font-weight: 600;
    padding: 10px 0; /* Top and bottom padding */
    text-align: center; /* Center text horizontally */
}

.announcement-bar a {
    color: #ffea00; /* Gold color for links */
    font-weight: 600;
    margin: 0 5px; /* Small spacing for visual balance */
}

.announcement-bar a:hover {
    color: #333333; /* Slightly different color on hover */
    text-decoration: none; /* Remove underline on hover */
}

.popup-container {
    position: fixed;
    left: 0; /* Stick to the left */
    top: 75%;
    transform: translateY(-50%);
    overflow: hidden; /* Hide the overflowing part of the image */
    width: 5rem;
    height: auto;
    z-index: 10;
}

.popup-link img.popup-image {
    transform: translateX(-50%); /* Shift image to the left, hiding half */
    transition: transform 0.3s ease; /* Smooth slide effect */
}

.popup-container:hover img.popup-image {
    transform: translateX(0); /* Slide the image fully into view */
}

