.ed-contactus {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    background: #eeeeee;
    padding: 30px;
    color: #111;
}

.ed-contactus *,
.ed-contactus *::before,
.ed-contactus *::after {
    box-sizing: border-box;
}

.ed-contactus__heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 10px;
}

.ed-contactus__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 50%;
    background: #111;
    color: #fff;
}

.ed-contactus__icon svg {
    display: block;
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.ed-contactus__title {
    margin: 0;
    padding: 0;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -.02em;
    color: #111;
}

.ed-contactus__intro {
    margin: 0 0 20px;
    line-height: 1.6;
    color: #111;
}

.ed-contactus__form {
    display: grid;
    gap: 22px;
}

.ed-contactus__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.ed-contactus__column {
    display: grid;
    gap: 16px;
}

.ed-contactus__field {
    display: grid;
    gap: 8px;
}

.ed-contactus__field label {
    margin: 0;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.4;
    color: #111;
}

.ed-contactus__field input,
.ed-contactus__field textarea {
    width: 100%;
    min-height: 44px;
    border: 2px solid #111;
    border-radius: 0;
    padding: 10px 12px;
    font: inherit;
    background: #fff;
    color: #111;
    box-shadow: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.ed-contactus__field textarea {
    min-height: 235px;
    border-color: rgba(0, 0, 0, .18);
    border-radius: 8px;
    resize: vertical;
}

.ed-contactus__field input:focus,
.ed-contactus__field textarea:focus {
    border-color: #111;
    outline: 0;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .08);
}

.ed-contactus__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    border: 0;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 800;
    line-height: 1.2;
    cursor: pointer;
    background: #070707;
    color: #fff;
    transition: opacity .2s ease, transform .2s ease;
}

.ed-contactus__button:hover,
.ed-contactus__button:focus {
    opacity: .9;
}

.ed-contactus__button:active {
    transform: translateY(1px);
}

.ed-contactus__alert {
    margin-bottom: 16px;
    border-radius: 10px;
    padding: 12px 14px;
    line-height: 1.5;
}

.ed-contactus__alert--success {
    border: 1px solid rgba(25, 135, 84, .35);
    background: rgba(25, 135, 84, .08);
    color: #0f5132;
}

.ed-contactus__alert--error {
    border: 1px solid rgba(220, 53, 69, .35);
    background: rgba(220, 53, 69, .08);
    color: #842029;
}

.ed-contactus__company {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.ed-contactus__button:disabled,
.ed-contactus__field input:disabled,
.ed-contactus__field textarea:disabled {
    cursor: not-allowed;
    opacity: .6;
}

@media (max-width: 767.98px) {
    .ed-contactus {
        padding: 22px 18px;
    }

    .ed-contactus__heading {
        align-items: flex-start;
    }

    .ed-contactus__layout {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ed-contactus__field textarea {
        min-height: 170px;
    }
}
