.hotel-help {
    background: var(--off-white);
    padding: 45px 0;
}

.hotel-help-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.hotel-help-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-card);
    padding: 44px 48px;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 40px;
    align-items: center;
}

.hotel-help-text {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.hotel-help-text h2 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 34px;
    line-height: 1.14;
    letter-spacing: -0.03em;
    color: var(--dark-blue);
}
.hotel-help-text p {
    margin: 0;
    font-size: 17px;
    line-height: 1.62;
    color: var(--ontic-text-body);
}

.hotel-help-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.hotel-help-actions a {
    display: inline-flex;
    align-items: center;
    height: 50px;
    padding: 0 26px;
    background: var(--orange);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    text-decoration: none;
    transition: background 120ms;
}
.hotel-help-actions a:hover {
    background: var(--orange-500);
    color: #fff;
    text-decoration: none;
}

@media screen and (max-width: 1024px) {
    .hotel-help-card {
        grid-template-columns: 1fr;
    }
    .hotel-help-actions {
        justify-content: flex-start;
    }
}

@media screen and (max-width: 640px) {
    .hotel-help-card {
        padding: 26px;
    }
}
