.contact-intro {
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 1.6;
}

.contact-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-details {
    flex: 1 1 260px;
    background: #f5f5f5;
    padding: 20px;
    border: 1px solid #dedede;
}

.contact-details ul {
    list-style: none;
    margin: 0 0 15px 0;
    padding: 0;
}

.contact-details li {
    margin-bottom: 8px;
}

.contact-form-wrapper {
    flex: 2 1 360px;
}

.simple-contact-form {
    border: 1px solid #dedede;
    padding: 20px;
    background: #fff;
}

.contact-form__row {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.contact-form__row label {
    font-weight: bold;
    margin-bottom: 5px;
}

.simple-contact-form input[type="text"],
.simple-contact-form input[type="email"],
.simple-contact-form input[type="tel"],
.simple-contact-form textarea {
    border: 1px solid #bcbcbc;
    padding: 10px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

.simple-contact-form textarea {
    resize: vertical;
}

.contact-form__row--split {
    gap: 15px;
}

.contact-form__row--split > div {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
}

.contact-form__row--checkbox {
    flex-direction: row;
    gap: 10px;
    align-items: flex-start;
}

.contact-form__row--checkbox label {
    font-weight: normal;
}

.contact-form__actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-form__hint {
    font-size: 12px;
    color: #555;
}

.contact-form__message {
    margin-top: 15px;
    min-height: 20px;
    font-weight: bold;
}

.contact-form__message.is-success {
    color: #2d7a2d;
}

.contact-form__message.is-error {
    color: #b30000;
}

@media (max-width: 768px) {
    .contact-form__row--split {
        flex-direction: column;
    }

    .contact-form__row--checkbox {
        flex-direction: column;
    }
}