#homepage-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-content {
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.popup-content h2 {
    margin-top: 0;
    margin-bottom: 15px;
}

.popup-body {
    flex-grow: 1;
    overflow-y: auto;
    margin-bottom: 15px;
}

.popup-body img {
    max-width: 100%;
    height: auto;
}

#close-popup {
    align-self: flex-end;
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

#close-popup:hover {
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .popup-content {
        width: 90% !important;
        height: 80% !important;
    }
}