/* Core Layout Container */
#contact-container {
    width: 100%;
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    box-sizing: border-box;
}

#contact-container p{
    text-align: center;
}

#haveAQ{
    font-size: 20px;
    margin-bottom: 5px;
    margin-top: 5px;
}

/* Form Window Styling */
.contact-form {
    background-color: rgb(241,239,216); /* Smooth contrast if your background is dark navy */
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #12253f; /* Deep Navy */
    font-size: 2rem;
    text-align: center;
}

.contact-form p {
    color: #666;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

/* Spacing out individual inputs */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

/* Input Labels */
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #12253f;
    font-size: 20px;
}

/* Inputs and Textarea shared fields */
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    background-color: #fafafa;
    font-size: 1rem;
    font-family: inherit;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

/* Fixes textarea stretching artifacts vertically only */
.form-group textarea {
    resize: vertical;
}

/* Highlight borders smoothly on user click */
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c99e32; /* Turns gold on focus */
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(201, 158, 50, 0.15);
}

/* Submit Button styling */
.submit-button {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    font-weight: bold;
    font-family: times new roman, serif;
    color: #ffffff;
    background-color: #12253f; /* Deep Navy Default Button */
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

/* Button interactive hover states */
.submit-button:hover {
    background-color: #1d3557; 
}

.submit-button:active {
    transform: scale(0.98); /* Slight click feedback */
}