/* Contact Popup Styles */
.contact-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    overflow-y: auto;
}

.contact-popup.show {
    display: block;
}

.contact-popup-content {
    position: relative;
    background-color: #fff;
    margin: 50px auto;
    padding: 20px;
    width: 90%;
    max-width: 1000px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-height: 90vh;
    overflow-y: auto;
}

.contact-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.contact-popup-header h2 {
    margin: 0;
    color: #333;
}

.close-popup {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #777;
}

.close-popup:hover {
    color: #333;
}

.contact-popup-body {
    margin-bottom: 20px;
}

.contact-popup-footer {
    border-top: 1px solid #eee;
    padding-top: 15px;
    display: flex;
    justify-content: flex-end;
}

.dont-show-again {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dont-show-again input[type="checkbox"] {
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-popup-content {
        width: 95%;
        margin: 30px auto;
        padding: 15px;
    }
}