.help-section {
    background-color: #efece5;
    padding: 40px 24px;
}

.help-section__heading {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    font-size: 28px;
    margin: 0 0 24px 0;
    color: #1a1a1a;
}

.help-section__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.help-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #1a1a1a;
}

.help-card__image-wrap {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background-color: #ddd;
}

.help-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.help-card:hover .help-card__image {
    transform: scale(1.03);
}

.help-card__title {
    margin-top: 12px;
    font-size: 16px;
    font-family: Georgia, "Times New Roman", serif;
}

/* Tablet */
@media (max-width: 900px) {
    .help-section__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Mobile */
@media (max-width: 500px) {
    .help-section__grid {
        grid-template-columns: 1fr;
    }
}