/* contact-style.css */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa; 
    color: #495057;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #212529; 
}

.accent-color {
    color: #005A9C; 
}

a {
   color: #005A9C;
   font-weight: 500;
   text-decoration: none;
   transition: color 0.3s ease;
}

a:hover {
    color: #003d6b; 
    text-decoration: underline;
}

.main-content-card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.07), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid #ced4da;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: #005A9C;
    box-shadow: 0 0 0 3px rgba(0, 90, 156, 0.15);
}

.form-input.is-invalid, .form-textarea.is-invalid {
    border-color: #dc3545;
}

.submit-button {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #005A9C;
    color: #ffffff;
    padding: 0.875rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.submit-button:hover:not(:disabled) {
    background-color: #004b80;
    transform: translateY(-2px);
}

.submit-button:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
    transform: none;
}

.error-message {
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}
