/* Contact Us Button */
.contact-us-btn {
    background-color: #4CAF50;
    color: white;
    padding: 16px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
    font-size: 18px;
    margin-bottom: 20px;
}

/* The Popup Form - Hidden by default */
.form-popup {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid #f1f1f1;
    z-index: 9;
    background-color: white;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

/* Form Container */
.form-container {
    display: flex;
    flex-direction: column;
}

.form-container h2 {
    text-align: center;
    margin-bottom: 20px;
}

/* Style for input fields */
input[type=text], input[type=email], select {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

/* Style for submit buttons */
.btn {
    background-color: #4CAF50;
    color: white;
    padding: 10px 18px;
    border: none;
    cursor: pointer;
    width: 100%;
    margin: 8px 0;
}

.btn.cancel {
    background-color: red;
}

/* Hover effects for buttons */
.btn:hover {
    opacity: 0.8;
}





