.cs-contact {
    padding: 100px 0;
    background-color: #fff;
    border-top: 1px solid #e8e8e8;
}

.cs-contact__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.cs-contact__info {
    display: flex;
    flex-direction: column;
    background-color: #fafafa;
    border-radius: 16px;
    overflow: hidden;
}

.cs-contact__info-content {
    padding: 48px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cs-contact__title {
    color: #27272c;
    font-family: var(--font-aeonik);
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 24px;
}

.cs-contact__text {
    color: #686873;
    font-family: var(--font-inter);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.cs-contact__phone {
    display: inline-block;
    color: #e0572a;
    font-family: var(--font-aeonik);
    font-size: 2rem;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 24px;
    transition: color 0.2s ease;
}

.cs-contact__phone:hover {
    color: #c44a20;
}

.cs-contact__image {
    width: 100%;
    height: 240px;
}

.cs-contact__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cs-contact__form {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #e8e8e8;
}

.cs-contact__form-wrapper {
    padding: 48px;
}

@media (max-width: 992px) {
    .cs-contact__wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cs-contact__image {
        display: none;
    }
}

@media (max-width: 768px) {
    .cs-contact {
        padding: 60px 0;
    }

    .cs-contact__info-content {
        padding: 32px;
    }

    .cs-contact__form-wrapper {
        padding: 32px;
    }

    .cs-contact__title {
        font-size: 2rem;
    }

    .cs-contact__phone {
        font-size: 1.75rem;
    }
}
