/* static/css/contact.css */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: white;
    color: #333;
    padding-top: 60px;
    /* Adjust according to header height */
    overflow-x: hidden;
    /* Prevent horizontal scrolling */
}

.contact-container {
    display: flex;
    justify-content: space-between;
    padding: 80px;
    max-width: 90%;
    margin: auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.contact-left,
.contact-right {
    width: 50%;
    padding: 20px;
}

.contact-left h2 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: #0078d7;
    margin-bottom: 10px;
    font-size: 28px;
    text-align: center;
}

.contact-left p {
    font-family: sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
}

.contact-form {
    background-color: #f0f0f0;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
}

.contact-form label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-weight: bold;
}

.required-star {
    color: red;
    margin-left: 5px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
}

.submit-button {
    background-color: #0078d7;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
}

.submit-button:hover {
    background-color: #005bb5;
}

.disclaimer {
    font-size: 14px;
    margin-top: 15px;
    text-align: center;
}

