/* Additional styles for lightbox and form validation */
/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox img {
    max-width: 100%;
    max-height: 90vh;
    border: 5px solid white;
    border-radius: var(--border-radius);
}

.close-lightbox {
    position: absolute;
    top: -30px;
    right: -30px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

/* Form validation */
.error-message {
    color: #d9534f;
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

input.error, textarea.error {
    border-color: #d9534f;
}

.success-message {
    background-color: #dff0d8;
    color: #3c763d;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
}

/* Privacy policy page */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-content h2 {
    margin-top: 2rem;
}

.privacy-content ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}
