/*-- Contact Form Page Styles --*/
.contact-page-main {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    min-height: 60vh;
}

#contact-form-container, #confirmation-message {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 500px;
    width: 100%;
    text-align: center;
}

#contact-form-container h1, #confirmation-message h2 {
    color: #0c1532; /* NEW: Dark Blue */
    margin-top: 0;
}

#contact-form-container p, #confirmation-message p {
    color: #555;
    margin-bottom: 2rem;
}

.form-group {
    text-align: left;
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c29a54; /* NEW: Gold */
    box-shadow: 0 0 0 2px rgba(194, 154, 84, 0.2); /* NEW: Gold Shadow */
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-submit-button {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
}

/* Confirmation Message Styles */
#confirmation-message {
    text-align: center;
}

.confirmation-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background-color: #2ECC40; /* Green checkmark color */
    color: #ffffff;
    font-size: 3rem;
    margin: 0 auto 1.5rem auto;
}
