.contact-section {
    width: 100%;
    /*background: linear-gradient(180deg, #f8fafc 0%, #e3e3e8 100%);*/
    background: #fff;
    padding: 4rem 2rem;
    color: #333;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
}

.contact-container {
    width: 100%;
    margin: 0 auto;
    background: #fff;
    border-radius: 0px;
    box-shadow: 0 4px 36px rgba(175, 176, 188, 0.15);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-align: center;
    color: #7d8598;
}

.contact-body {
    font-size: 1.15rem;
    line-height: 1.75;
    text-align: center;
    margin-bottom: 1.5rem;
}

.contact-success {
    background: #e8fae8;
    color: #308c41;
    border: 1px solid #b2e4b4;
    padding: 1rem 1.2rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 1.25rem;
    font-weight: 600;
}

.contact-error {
    background: #faeaea;
    color: #a63030;
    border: 1px solid #e4b2b2;
    padding: 1rem 1.2rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 1.25rem;
    font-weight: 600;
}

.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.contact-form-field {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

    .contact-form-field label {
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: #667;
        font-size: 1rem;
    }

    .contact-form-field input,
    .contact-form-field textarea {
        width: 100%;
        padding: 0.6rem 0.9rem;
        border-radius: 7px;
        border: 1.5px solid #dbe1ea;
        font-size: 1.06rem;
        font-family: inherit;
        background: #fff;
        color: #222;
        resize: vertical;
        margin-bottom: 0.25rem;
        box-sizing: border-box;
        outline: none;
        transition: border 0.15s;
    }

        .contact-form-field input:focus,
        .contact-form-field textarea:focus {
            border: 1.5px solid #b8c4d7;
        }

.contact-button {
    background-color: #1373d1;
    color: #fff;
    padding: 0.78rem 2.1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.12rem;
    text-decoration: none;
    margin-top: 0.75rem;
    border: none;
    transition: background 0.2s;
    cursor: pointer;
}

    .contact-button:hover, .contact-button:focus {
        background-color: #505e77;
    }
