.contact-page__header {
    max-width: 48rem;
	margin: 0 auto 3rem;
	text-align: center;
}

.contact-page__title {
    margin: 0;
	color: #343a40;
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.contact-page__title::after{
	display: block;
	width: 100px;
	height: 0.5px;
	margin: 1rem auto 0;
	background: #dee2e6;
	content: "";
}

.contact-page__content {
    padding:0;
}

.contact-page__information,
.contact-page__form {
    height: 100%;
    padding: clamp(1.5rem, 4vw, 3rem);
    background: #ffffff;
    border: 1px solid #e5eaf1;
    border-radius: 1rem;
    box-shadow: 0 16px 45px rgb(26 46 76 / 9%);
}

.contact-page__information {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-page__information-title,
.contact-page__form-title {
    font-size: 1.2rem;
    color: #343a40;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.contact-page__information-item {
    display: flex;
    gap: 0.5rem;
    margin: 0;
    padding: 1rem 0;
    color: #4f6175;
    line-height: 1.65;
    border-bottom: 1px solid #edf0f4;
}

.contact-page__information-item:last-child {
    border-bottom: 0;
}

.contact-page__information-item strong {
    flex: 0 0 105px;
    color: #112a46;
}

.contact-page__information-item a {
    color: #0d6efd;
    font-weight: 600;
    text-decoration: none;
}

.contact-page__information-item a:hover {
    text-decoration: underline;
}

.contact-page__form-element {
    display: grid;
    gap: 1.15rem;
}

.contact-page__form-field,
.contact-page__form-actions,
.contact-page__consent {
    margin: 0;
}

.contact-page__form-field label {
    display: inline-block;
    margin-bottom: 0.5rem;
    color: #23384f;
    font-size: 0.95rem;
    font-weight: 650;
}

.contact-page__form-field input,
.contact-page__form-field textarea {
    display: block;
    width: 100%;
    padding: 0.8rem 0.95rem;
    color: #172b40;
    font: inherit;
    line-height: 1.5;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 0.55rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-page__form-field input {
    min-height: 48px;
}

.contact-page__form-field textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-page__form-field input::placeholder,
.contact-page__form-field textarea::placeholder {
    color: #8a99aa;
}

.contact-page__form-field input:focus,
.contact-page__form-field textarea:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgb(13 110 253 / 13%);
}

.contact-page__consent {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    color: #5c6c7d;
    font-size: 0.9rem;
    line-height: 1.55;
}

.contact-page__consent input {
    flex: 0 0 auto;
    width: 1.15rem;
    height: 1.15rem;
    margin: 0.15rem 0 0;
    accent-color: #0d6efd;
    cursor: pointer;
}

.contact-page__consent label {
    cursor: pointer;
}

.contact-page__consent-link {
    color: #0d6efd;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.contact-page__form-actions {
    padding-top: 0.25rem;
}

.contact-page__form-actions .btn {
    width: 100%;
    min-height: 50px;
    padding: 0.75rem 1.25rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    border-radius: 0.6rem;
    box-shadow: 0 8px 18px rgb(13 110 253 / 22%);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-page__form-actions .btn:hover {
    box-shadow: 0 12px 25px rgb(13 110 253 / 28%);
    transform: translateY(-1px);
}

.contact-page__form-actions .btn:focus-visible,
.contact-page__consent-link:focus-visible {
    outline: 3px solid rgb(13 110 253 / 35%);
    outline-offset: 3px;
}

.contact-page__honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

@media (max-width: 991.98px) {
    .contact-page__information {
        min-height: auto;
    }
}

@media (max-width: 575.98px) {
    .contact-page__information-item {
        display: block;
    }

    .contact-page__information-item strong {
        display: block;
        margin-bottom: 0.2rem;
    }
}