.amenities-layout h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.amenities-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.amenity-group h3 {
    font-size: 16px;
    font-weight: bold;
    color: #555;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.amenity-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 15px;
}

.amenity-item i,
.amenity-item svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

@media (max-width:575px) {
    .amenities-container {
        grid-template-columns: repeat(1, 1fr);
        gap: 8px;
    }
}