/* Area 4 - Small Images Below Description */
.area4-small-images {
    display: flex;
    gap: 10px;
    margin-top: 30px;
    align-items: center;
    justify-content: flex-start;
}

.small-img-item {
    flex: 0 0 auto;
    max-width: 150px;
}

.small-img-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .area4-small-images {
        gap: 15px;
        margin-top: 20px;
    }

    .small-img-item {
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .area4-small-images {
        gap: 10px;
    }

    .small-img-item {
        max-width: 100px;
    }
}