.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    text-align: center;
}

.lightbox img {
    max-width: 300px;
    margin-bottom: 10px;
}

.lightbox h2, .lightbox h5 {
    margin: 10px 0;
}

.lightbox p {
    font-size: 1rem;
    color: #333;
    padding: 10px;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: white;
}
