body {
    font-family: Verdana;
    color: #fff;
}

.contact-container {
    max-width: 1280px;
    margin: 0 auto;
    margin-top: 0;
    background-color: #112839;
    border-radius: 10px;
}

.contact-content {
    padding: 40px;
}

.contact-content h1 {
    font-weight: 300;
}

.contact-content a {
    color: #ffffff;
}

.contact-content a:visited {
    color: #ffffff;
}

.contact-content a[href^="mailto:"] {
    color: #ffffff;
}

.contact-content a[href^="mailto:"]:visited {
    color: #ffffff;
}

.contact-form {
    margin-top: 20px;
}

.contact-form-group {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form-group label {
    font-weight: 300;
}

.contact-form-group input,
.contact-form-group textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #c7cdd3;
    background: #ffffff;
    color: #1e2a35;
    font-family: Verdana, sans-serif;
    font-size: 14px;
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
    color: #6b7280;
}

.contact-form-group textarea {
    resize: vertical;
    min-height: 180px;
}

.contact-submit {
    border: 1px solid #ffffff;
    background-color: #2c3e50;
    color: #ffffff;
    border-radius: 5px;
    padding: 10px 16px;
    cursor: pointer;
    font-size: 14px;
    font-weight: normal;
    transition: background-color 0.2s ease, transform 0.05s ease;
}

.contact-submit:hover {
    background-color: #112839;
}

.contact-submit:active {
    background-color: #2c3e50;
    transform: scale(0.98);
}

.contact-flashes {
    margin-top: 16px;
    margin-bottom: 16px;
}

.contact-flash {
    border-radius: 6px;
    padding: 10px 12px;
    margin-bottom: 10px;
}

.contact-flash.contact_success {
    background-color: #1f5b2a;
    border: 1px solid #4ca860;
}

.contact-flash.contact_error {
    background-color: #5e2020;
    border: 1px solid #c76363;
}

.contact-direct-mail {
    margin-top: 20px;
}
