.hotel-info-section {
    width: 100%;
    margin: 0 auto;
    padding: 60px 80px;
    font-family: "Monserrat", Sans-serif !important;
}

.hotel-info-header {
    text-align: center;
    margin-bottom: 60px;
}

.hotel-info-title {
    max-width: 980px;
    font-size: 42px;
    font-weight: 300;
    margin: 0 auto 20px auto;
    color: #2F2F2F;
    text-transform: uppercase;
}

.hotel-info-subtitle {
    font-size: 16px;
    font-weight: 300;
    color: #616161;
    margin: 0 auto;
}

.hotel-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #F5F5F5;
    gap:1px
}

.hotel-info-box {
    text-align: center;
    padding: 30px;
    background: #FFFFFF;
}

.hotel-info-box-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotel-info-box-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(0%) brightness(1);
    transition: filter 0.3s ease;
}

.hotel-info-box-icon .hs-font-icon {
    color: var( --hs-color-primary, #A8875E );
    font-size: 48px;
}

.hotel-info-box-title {
    font-size: 18px;
    font-weight: 500;
    color: #2F2F2F;
    margin: 0 0 15px;
}

.hotel-info-box-description {
    font-size: 16px;
    font-weight: 300;
    color: #2F2F2F;
    margin: 0;
}

@media (max-width: 992px) {
    .hotel-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1px;
    }
}

@media (max-width: 768px) {
    .hotel-info-section {
        padding: 133px 14px;
    }
    
    .hotel-info-header {
        margin-bottom: 40px;
    }
    
    .hotel-info-title {
        font-size: 24px;
        padding: 0 26px;
        margin-bottom: 15px;
    }
    
    .hotel-info-subtitle {
        font-size: 15px;
    }
    
    .hotel-info-grid {
        grid-template-columns: 1fr;
        gap: 1px;
    }
    
    /* Мобилно: 2 колони – икона вляво (центрирана вертикално), име + описание вдясно */
    .hotel-info-box {
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
        padding: 20px 16px;
        gap: 16px;
    }
    
    .hotel-info-box-icon {
        width: 56px;
        height: 56px;
        min-width: 56px;
        margin: 0;
        flex-shrink: 0;
    }
    
    .hotel-info-box-content {
        display: flex;
        flex-direction: column;
        gap: 6px;
        flex: 1;
        min-width: 0;
    }
    
    .hotel-info-box-title {
        font-size: 17px;
        margin: 0;
    }
    
    .hotel-info-box-description {
        font-size: 14px;
        margin: 0;
    }
}
