.contact-page {
    width:100%;
    max-width: 1440px;
    margin:auto;
}

.contact-page__heading {
    text-align: center;
    margin-top: 80px;
    margin-bottom: 30px;
}

.contact-page__title {
font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    color: #111;
    margin: 0 0 16px;
    width: 100%;
    max-width: 1000px;
    margin: auto;
    text-transform: uppercase;
}

.contact-page__intro {
font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 26px;
    width: 100%;
    max-width: 700px;
    margin: auto;
    margin-top: 40px;
}

.contact-page__map {
    margin-bottom: 35px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    background: #fff;
}

.contact-page__content {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 30px;
    align-items: start;
    margin-bottom: 80px;
}

.contact-page__info-wrap {
    padding: 0px 24px;
}

.contact-page__section-title {
    text-transform: uppercase;
    font-size: 22px;
    margin-bottom: 18px;
    position: relative;
    display: inline-block;
}

.contact-page__section-title--info::after {
    content: "";
    display: block;
    width: 100px;
    height: 1px;
    background: #000;
}

.contact-page__info-block {
    margin-bottom: 28px;
}

.contact-page__info-block:last-child {
    margin-bottom: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #ddd;
    padding: 14px 16px;
    font-size: 15px;
    outline: none;
    transition: .25s ease;
    background: #fafafa;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #111;
    background: #fff;
}

.contact-form textarea {
    resize: vertical;
    min-height: 160px;
}

.contact-form button {
    border: none;
    background: #111;
    color: #fff;
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: .25s ease;
}

.contact-form button:hover {
    background: #fcc800;
    color: #111;
}

.contact-page__info-wrap p {
    line-height: 1.6;
}

.contact-page__info-block--address p {
    margin-right: auto;
    max-width: 450px;
    margin-bottom: 20px;
}

.contact-page__info-wrap a {
    color: #111;
    text-decoration: none;
}

.contact-page__info-wrap a:hover {
    text-decoration: underline;
}



@media (max-width: 768px) {
    .contact-page__content {
        grid-template-columns: 1fr;
    }

    .contact-form__row {
        grid-template-columns: 1fr;
    }

    .contact-page__title {
        font-size: 26px;
    }
}