/* General Styling */
.contact-us-page-header {
    text-align: center;
    background-color: #fff;
    color: #4A90E2;
    padding: 10px 0;
    margin-bottom: 10px;
}

.contact-us-page-header h1 {
    font-size: 20px;
    margin: 0;
}
.contact-us-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-us-form p {
    font-size: 14px;
    margin-bottom: 10px;
    color: #555;
}

/* Form Styling */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    font-weight: bold;
    color: #333;
}

input, textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    color: #333;
}

textarea {
    min-height: 100px;
    resize: vertical;
}

/* Button Styling */
.submit-button {
    padding: 10px 15px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: #4A90E2;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #0056b3;
}

.required {
    color: #4A90E2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-us-form {
        padding: 15px;
    }
}

/* General Styling for the reCAPTCHA Widget */
.g-recaptcha {
    display: flex; /* Aligns the reCAPTCHA container */
    justify-content: center; /* Centers it horizontally */
    margin: 15px 0; /* Adds space above and below */
}

/* Responsive Styling */
@media (max-width: 768px) {
    .g-recaptcha {
        transform: scale(0.85); /* Scale down for smaller screens */
        transform-origin: center; /* Keeps scaling centered */
    }
}


/* Modal container */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    background-color: rgba(0, 0, 0, 0.6); /* Black background with opacity */
    display: flex; /* Flexbox for centering */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
}

/* Modal content */
.modal-content {
    background-color: #ffffff; /* White background for content */
    padding: 20px; /* Spacing inside the modal */
    border-radius: 8px; /* Rounded corners */
    width: 90%; /* Responsive width */
    max-width: 500px; /* Maximum width for modal */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25); /* Subtle shadow for depth */
    font-family: 'Arial', sans-serif; /* Ensure modern font */
    color: #333333; /* Dark text for readability */
}

/* Close button */
.modal-close {
    color: #333333;
    float: right;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover,
.modal-close:focus {
    color: #ff5555; /* Highlight on hover/focus */
    text-decoration: none;
}

body.modal-open {
    overflow: hidden; /* Prevent scrolling */
}

/* Header styling */
.modal-content h3 {
    color: #4A90E2; /* Your brand's primary color */
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 10px;
    text-align: center;
}

/* Paragraph styling */
.modal-content p {
    font-size: 14px;
    line-height: 1.4;
    color: #555555;
    margin-bottom: 10px;
    text-align: justify; /* Neat alignment */
}
