/* Contact Page Specific Styles */
.contact-container {
    max-width: 700px;
    margin: 30px auto;
    padding: 20px;
}

.contact-container h1 {
    margin-bottom: 20px;
}

.site-form .form-group {
    margin-bottom: 20px;
}

.site-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 6px;
}

.site-form input[type="text"],
.site-form input[type="email"],
.site-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 1rem;
}

.site-form textarea {
    resize: vertical;
}

.btn-submit {
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid #999;
    background-color: #f8f9fa;
}

.btn-submit:hover {
    background-color: #e2e6ea;
}

.alert {
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.success-alert {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-alert {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
