.contact-section {
    width: 100%;
    background: linear-gradient(180deg, #fafdff 0%, #e7eaf2 100%);
    padding-bottom: 3rem;
    color: #34405a;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
}

.contact-container {
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(160,170,190,0.09), 0 1.5px 3px rgba(70, 90, 125, 0.06);
    padding: 2.8rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1.5px solid #e5e8ef;
}

.contact-title {
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 0.9rem;
    text-align: center;
    color: var(--platinum-title) !important;
    font-family: 'Montserrat', 'Inter', Arial, sans-serif;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 6px rgba(170,180,200,0.06);
}

.contact-body {
    font-size: 1.15rem;
    line-height: 1.75;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #485066;
}

.contact-success {
    background: #e8f6fa;
    color: #1d668c;
    border: 1px solid #b2d6e4;
    padding: 1rem 1.2rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 1.25rem;
    font-weight: 600;
}

.contact-error {
    background: #f7ebeb;
    color: #ba4040;
    border: 1px solid #e8c9c9;
    padding: 1rem 1.2rem;
    border-radius: 10px;
    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: #7082a2;
        font-size: 1rem;
        letter-spacing: 0.01em;
    }

    .contact-form-field input,
    .contact-form-field textarea {
        width: 100%;
        padding: 0.63rem 1.1rem;
        border-radius: 8px;
        border: 1.5px solid #dbe1ea;
        font-size: 1.09rem;
        font-family: inherit;
        background: #f5f8fc;
        color: #34405a;
        resize: vertical;
        margin-bottom: 0.18rem;
        box-sizing: border-box;
        outline: none;
        transition: border 0.15s;
    }

        .contact-form-field input:focus,
        .contact-form-field textarea:focus {
            border: 1.5px solid #a2b3cc;
        }

.contact-button {
    background: linear-gradient(90deg, #b5bcc8 0%, #76849b 100%);
    color: #fff;
    padding: 0.82rem 2.2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.12rem;
    text-decoration: none;
    margin-top: 0.7rem;
    border: none;
    transition: background 0.18s, box-shadow 0.18s;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(150,155,170,0.06);
}

    .contact-button:hover, .contact-button:focus {
        background: linear-gradient(90deg, #76849b 0%, #b5bcc8 100%);
        box-shadow: 0 4px 22px rgba(136,148,166,0.09);
    }
